﻿:root {
    --primary: #00CC5C;
}

body {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    background-color: #efefef;
    overflow-x: hidden;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #222222;
}

    body:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #efefef;
        background: linear-gradient(0, rgba(0,0,0, 0.1), #efefef 100%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.body-content {
    display: flex;
    flex-direction: column;
    flex: 0 0;
    min-height: 100vh;
    min-width: 400px;
    background-color: #ffffff;
    z-index: 1;
    box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: rgba(50, 50, 93, 0.1) 0 30px 60px -12px, rgba(0, 0, 0, 0.1) 0 18px 36px -18px;
}

.account-block {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
}

.acount-block-body {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-block-title {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 21px;
    margin: 0 0 3px;
}

.account-block-subtitle {
    color: #888888;
    font-size: 13px;
    font-weight: 300;
    margin: 0 0 30px;
}

.acount-block-body-separator {
    flex: 0 0;
    margin: 30px 0;
}

.acount-block-body-separator-text {
    display: flex;
    flex-direction: row;
    color: #cccccc;
    font-size: 12px;
    font-weight: 300;
    gap: 10px;
    align-items: center;
}

    .acount-block-body-separator-text:before,
    .acount-block-body-separator-text:after {
        content: '';
        flex: 1 1;
        height: 1px;
        display: block;
        border-top: 1px dashed #dddddd;
    }


.acount-block-header {
    flex: 0 0;
    display: flex;
    flex-direction: column;
}

    .acount-block-header .acount-block-header-logo {
        flex: 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

        .acount-block-header .acount-block-header-logo a {
            display: inline-block;
        }

            .acount-block-header .acount-block-header-logo a img {
                height: 40px;
            }

.acount-block-footer {
    flex: 0 0;
    color: #888888;
    font-size: 12px;
    font-weight: 300;
}

.account-social-logins form {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    background-color: #fefefe;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 0;
    color: #6d6d6d;
    cursor: pointer;
    outline: none;
    transition: all ease-in-out 150ms;
}

.btn-primary {
    color: #ffffff;
    background-color: var(--primary);
    border-color: rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

    .btn-primary:hover {
        box-shadow: inset 1000px 1000px 1000px 1000px rgba(255, 255, 255, 0.1);
    }

.btn-social {
    padding: 7.5px 0;
}

    .btn-social:hover {
        box-shadow: inset 1000px 1000px 1000px 1000px rgba(0, 0, 0, 0.025);
    }

    .btn-social i {
        font-size: 18px;
        color: #999999;
    }

.account-form-validation {
    color: #a70000;
}

    .account-form-validation ul {
        margin: 0;
        padding: 0;
    }

        .account-form-validation ul li {
            margin: 5px 0;
            padding: 0 5px;
            list-style: none;
        }

.account-link {
    margin: 5px 0;
}

    .account-link a {
        margin: 0;
        color: var(--primary);
        text-decoration: none;
    }

/* Common classes */
.form-horizontal {
    flex: 0 0;
    display: flex;
    flex-direction: column;
}

.form-group {
    flex: 0 0;
    display: flex;
    flex-direction: column;
    padding: 7.5px 0;
}

    .form-group:last-of-type {
        padding: 7.5px 0 0;
    }

.form-field {
    flex: 0 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .form-field .form-control {
        padding-right: 38px !important;
        z-index: 1;
    }

    .form-field .field-reveal {
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        top: 5px;
        right: 8px;
        z-index: 2;
        opacity: 0.35;
        background-color: #ffffff;
        background-size: 21px 21px;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../eye.svg);
        cursor: pointer;
    }

        .form-field .field-reveal:hover {
            opacity: 0.5;
        }

        .form-field .field-reveal.on {
            background-image: url(../eye-off.svg);
        }

.control-label {
}

.form-control {
}

input[type="text"].form-control,
input[type="email"].form-control,
input[type="password"].form-control {
    margin: 0;
    padding: 0 10px;
    border: none;
    box-shadow: none;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
    height: 40px;
}

input:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-size-adjust: none;
    -webkit-text-fill-color: #222222;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
    border: none;
    outline: rgba(0, 0, 0, 0.15);
    transition: background-color 5000s ease-in-out 0s;
}

::placeholder {
    color: #cccccc;
}

.no-select {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.error-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
}

    .error-messages .error-message {
        color: #a70000;
    }
