* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color:#f7f7f7;
    margin: 0;
}

.opacity-1 {
    opacity: 0.1;
}

.opacity-2{
    opacity: 0.2;
}

.opacity-3 {
    opacity: 0.3;
}

.opacity-4 {
    opacity: 0.4;
}

.opacity-5 {
    opacity: 0.5;
}

.opacity-6 {
    opacity: 0.6;
}

.opacity-7 {
    opacity: 0.7;
}

.opacity-8 {
    opacity: 0.8;
}

.opacity-9 {
    opacity: 0.9;
}

#login-form {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
}

#login-form h3{
    color: #171717c4;
    font-size: 24px;
}

#login-form .signInBtn {
    background-color: #167D7F;
    color: #fff;
    width: 340px;
    font-size: 14px;
}

#login-form .forgotBtn {
    width: 140px;
    background-color: white;
    color: #167D7F;
    border: 1px solid #167D7F;
    font-size: 13px;
    border-radius: 5px;
    padding: 3px 0;
}

#login-form .backToLoginBtn {
    background-color: rgba(var(--bs-tertiary-bg-rgb));
    color: #167D7F;
    width: 140px;
    border: 1px solid #167D7F;
    font-size: 13px;
    border-radius: 5px;
    padding: 3px 0;
}

.container {
    max-width: 960px;
    margin: 30px auto;
    padding: 20px;
}

h1 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0 20px;
}

h1 small {
    display: block;
    font-size: 15px;
    padding-top: 8px;
    color: gray;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 50px auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 15px;
    z-index: 1;
    top: 25px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#login-form .logo-image{
    width: 200px;
    display: block;
    margin: auto;
}

#login-form .logo-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    margin-bottom: 25px;
}

#lead-generate-form
{
    position: relative;

    width: 450px;
    background-color: #FFFFFF;
    padding: 25px 40px;
    border-radius: 15px;
    margin: auto;
}

#lead-generate-form .logo-image {
    width: 200px;
    height: auto;
    display: block;
    margin: auto;
}

#lead-generate-form .logo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#lead-generate-form .signInBtn {
    background-color: #167D7F;
    color: #fff;
    width: 560px;
    font-size: 14px;
}

#lead-generate-form .form-header{
    text-align: center;
    position: relative;
    top: -5px;
}

#lead-generate-form .form-header p
{
    margin-bottom: 0;
    font-size: 15px;
}

#lead-generate-form .form-header small {
    font-size: 14px;
    opacity: 0.8;
}

#lead-generate-form .leadSubmitBtn
{
    width: 100%;
    background: #CEA654;
    color: #fff;
    outline: none;
    border: 1px solid #CEA654;
    border-radius: 5px;
    padding: 7px;
    font-weight: 600;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    #login-form {
        width: 340px;
    }

    #login-form .signInBtn {
        width: 280px;
    }

    #lead-generate-form {
        width: 380px;
    }
}

.input-group-text-custom{
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #ced4da;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none !important;
    outline: 0;
    box-shadow:none !important;
}
#login-form .bi-lock-fill, 
#login-form .bi-person-fill, 
#login-form .bi-envelope-fill {
    font-size: 16px;
    color: #167D7F
}