/* Forgot Password Specific Styles */

.forgot-logo {
    position: absolute;
    width: 160px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    top: -210px;
}

.forgot-logo img {
    width: 100%;
}

.forgot-password-card {
    width: 380px;
    height: 180px;
    position: absolute;
    margin: auto;
    top: 4px;
    bottom: -4px;
    left: 0;
    right: 0;
    background-color: rgb(32, 32, 32, .87);
    box-shadow: 0px 0px 0 4px rgba(255, 255, 255, .20);
    padding: 20px;
    border-radius: 10px;
}

.forgot-password-title {
    position: absolute;
    top: -45px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    line-height: 1.2;
    border-radius: 0.5rem;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
}

.forgot-input-group {
    position: relative;
    margin-bottom: 10px;
}

.forgot-input-group input {
    background: #fff;
    height: 40px;
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    padding-left: 35px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.forgot-input-group .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(91, 91, 91);
}

.forgot-send-btn {
    width: 100%;
    height: 42px;
    border-radius: 5px;
    /* margin-top: 12px; */
    margin-bottom: 18px;
    border: none;
    background: #1189e9;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-send-btn:hover {
    background: #0d6ebd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(17, 137, 233, 0.3);
}

.forgot-send-btn:active {
    transform: translateY(0);
}

.forgot-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.forgot-back-link {
    text-align: center;
    margin-top: 8px;
}

.forgot-back-link a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.3s ease;
}

.forgot-back-link a:hover {
    color: #1189e9;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Reset Password Specific Styles */

.reset-logo {
    position: absolute;
    width: 160px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    top: -210px;
}

.reset-logo img {
    width: 100%;
    margin-top: 20px;
}

.reset-password-card {
    width: 380px;
    height: 280px;
    position: absolute;
    margin: auto;
    top: 4px;
    bottom: -4px;
    left: 0;
    right: 0;
    background-color: rgb(32, 32, 32, .87);
    box-shadow: 0px 0px 0 4px rgba(255, 255, 255, .20);
    padding: 20px;
    border-radius: 10px;
}

.reset-password-title {
    position: absolute;
    top: -75px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    line-height: 1.2;
    border-radius: 0.5rem;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    margin-top: 38px;
}

.reset-input-group {
    position: relative;
    margin-bottom: 10px;
}

.reset-input-group input {
    background: #fff;
    height: 40px;
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.reset-input-group .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(91, 91, 91);
}

.reset-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgb(91, 91, 91);
    transition: color 0.2s ease;
}

.reset-toggle-password:hover {
    color: rgb(51, 51, 51);
}

.reset-submit-btn {
    width: 100%;
    height: 42px;
    border-radius: 5px;
    margin-top: 12px;
    border: none;
    background: #1189e9;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-submit-btn:hover {
    background: #0d6ebd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(17, 137, 233, 0.3);
}

.reset-submit-btn:active {
    transform: translateY(0);
}

.reset-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.password-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.85);
}

.password-requirements strong {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
}

.password-requirements ul {
    margin: 3px 0 0 12px;
    padding: 0;
    list-style: disc;
}

.password-requirements li {
    margin: 2px 0;
    line-height: 1.3;
}
