body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    background: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExb2toN3d6bzB5OXRwbHp4cTVoZjkydmJpN2k4NndwMWZtc3djaXV5ZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xT9IgzoKnwFNmISR8I/giphy.gif') center center / cover no-repeat fixed;
    background-blend-mode: darken;
    background-color: rgb(39, 67, 109);
    color: #c9d1d9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.forgot-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 70px;
    box-sizing: border-box;
}
.forgot-card {
    background: rgba(22, 27, 34, 0.97);
    border: 1px solid #30363d;
    border-radius: 20px;
    box-shadow: 0 6px 36px 0 rgba(0,0,0,0.45);
    padding: 52px 44px 40px 44px;
    max-width: 460px;
    width: 97vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInDown 0.9s;
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px);}
    100% { opacity: 1; transform: none;}
}
.forgot-icon {
    font-size: 50px;
    color: #58a6ff;
    background: #21262d;
    border-radius: 50%;
    padding: 18px 20px 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px 0 rgba(88,166,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.forgot-title {
    font-size: 2.2rem;
    color: #58a6ff;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-align: center;
}
.forgot-desc {
    color: #8b949e;
    font-size: 1.16rem;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.55;
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
label {
    color: #58a6ff;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    font-size: 1.04rem;
}
input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1.5px solid #30363d;
    border-radius: 6px;
    background: #0d1117;
    color: #c9d1d9;
    font-size: 1.06rem;
    font-family: 'Montserrat', Arial, sans-serif;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 7px;
    box-sizing: border-box;
}
input[type="email"]:focus {
    border-color: #58a6ff;
}
button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1.16rem;
    font-weight: bold;
    color: #0d1117;
    background: linear-gradient(90deg, #58a6ff 0%, #238636 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 rgba(88,166,255,0.10);
    margin-top: 8px;
    transition: background 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', Arial, sans-serif;
}
button[type="submit"]:hover, button[type="submit"]:focus {
    background: linear-gradient(90deg, #238636 0%, #58a6ff 100%);
    box-shadow: 0 2px 18px 0 rgba(88,166,255,0.18);
}
.extra-links {
    text-align: center;
    margin-top: 24px;
}
.extra-links a {
    color: #58a6ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.04rem;
    transition: color 0.3s;
    font-family: 'Montserrat', Arial, sans-serif;
}
.extra-links a:hover {
    color: #238636;
}
@media (max-width: 700px) {
    .forgot-card {
        padding: 30px 6vw 20px 6vw;
        border-radius: 14px;
        max-width: 98vw;
    }
    .forgot-title {
        font-size: 1.4rem;
    }
    .forgot-desc {
        font-size: 0.97rem;
    }
    button[type="submit"] {
        font-size: 1rem;
        padding: 11px;
    }
    .forgot-icon {
        font-size: 32px;
        padding: 10px 12px 7px 12px;
    }
}