/* static/css/forgot-password-email-entry.css */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    margin-top: -100px;
}

h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 80px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    align-self: flex-start;
}

input[type="email"] {
    width: 95%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

button[type="submit"] {
    padding: 12px 30px;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

button[type="submit"]:hover {
    background-color: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 600px) {
    h2 {
        font-size: 2rem;
    }

    form {
        width: 90%;
    }
}