/* Custom styles for Identity Area Pages */

#hero {
    font-family: "Jost", sans-serif !important;
    padding-top: 40px;
    height: auto;
    min-height: calc(100vh - 300px);
}

#hero a {
    text-decoration: underline;
}

#hero a:hover {
    color: #47e475;
}

form h2,
h1,
#registerForm h2,
#account h2 {
    font-size: 36px;
    margin: 15px;
}

form .form-floating>.form-control {
    padding: 1rem 1.75rem;
}

.form-control,
form .form-control,
#registerForm .form-control,
#account .form-control {
    height: 50px;
    color: white !important;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    transition: 0.3s;
    display: block;
    width: 100%;
    padding: 0.375rem 40px 0.375rem 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow: visible;
}

.form-label,
form .form-label,
#registerForm .form-label,
#account .form-label {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
}

.form-control:hover,
.form-control:focus,
form .form-control:hover,
form .form-control:focus,
#registerForm .form-control:hover,
#registerForm .form-control:focus,
#account .form-control:hover,
#account .form-control:focus {
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.4);
}

form .form-floating>.form-control:focus~label::after {
    background-color: transparent;
}

.form-group,
#account .form-group {
    position: relative;
}

.password-toggle {
    position: relative;
}

.password-toggle i {
    cursor: pointer;
    position: absolute;
    right: 17px;
    top: 17px;
}

.password-toggle .fa-eye-slash {
    display: none;
}

#account p a {
    font-size: 16px;
    font-weight: 500;
    color: #377e3a;
    text-decoration: none;
}

#account p a:hover {
    font-size: 16px;
    font-weight: 500;
    color: #47e475;
}

section {
    padding: 30px 0px;
}

input::placeholder {
    color: #fff !important;
}

.btn-login,
.btn-register,
.btn-forgot,
.btn-resend {
    background: #47e475;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.btn-register:hover,
.btn-login:hover,
.btn-forgot:hover,
.btn-resend:hover {
    background: #377e3a;
}

.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #47e475;
    border-color: #47e475;
    outline: none;
}

.form-check-input:focus {
    border-color: #47e475;
    box-shadow: 0 0 0 0;
}

.login-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.login-more p button {
    width: 150px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    color: white !important;
}

.login-more #Facebook {
    background-color: dodgerblue;
}

.login-more #Google {
    background-color: red;
}

#external-login-description {
    color: #377e3a;
}