/*
    Copyright (c) 2025 EUMETSAT
    License: Proprietary
*/
@charset "ISO-8859-1";

.forgotPassword-container {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
    padding: 40px 36px;
    width: 400px;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
}

.forgotPassword-container h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

.forgotPassword-container p {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 28px;
    line-height: 1.6;
}

.forgotPassword-lock-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #3d8ef8;
}

.forgotPassword-info-box {
    background: rgba(61,142,248,0.07);
    border: 1px solid rgba(61,142,248,0.18);
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 24px;
    text-align: left;
}

.forgotPassword-info-box p {
    color: #6b7280;
    font-size: 12px;
    margin: 0 0 8px;
    line-height: 1.6;
}

.forgotPassword-info-box p:last-child {
    margin-bottom: 0;
}

.forgotPassword-info-box a {
    color: #3d8ef8;
    font-weight: 500;
    text-decoration: none;
}

.forgotPassword-info-box a:hover {
    text-decoration: underline;
}

.forgotPassword-btn,
.forgotPassword-btn:link,
.forgotPassword-btn:visited,
.forgotPassword-btn:active {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    box-sizing: border-box;
    background: #3d8ef8;
    color: #ffffff;
}

.forgotPassword-btn:hover {
    background: #2b7de0;
    color: #ffffff;
    text-decoration: none;
    transform: none;
}

.forgotPassword-btn:active { transform: scale(0.99); }

.forgotPassword-btn-secondary,
.forgotPassword-btn-secondary:link,
.forgotPassword-btn-secondary:visited,
.forgotPassword-btn-secondary:active {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #a0aec0;
    text-decoration: none;
}

.forgotPassword-btn-secondary:hover {
    background: #222222;
    border-color: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
    transform: none;
}

.forgotPassword-form-control {
    width: 100%;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    padding: 11px 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.forgotPassword-form-control:focus {
    border-color: #3d8ef8;
    box-shadow: 0 0 0 3px rgba(61,142,248,0.1);
}

.forgotPassword-form-control::placeholder { color: #333333; }

.forgotPassword-form-control:-webkit-autofill,
.forgotPassword-form-control:-webkit-autofill:hover,
.forgotPassword-form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #161616 inset !important;
    caret-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
}