/* Reset Password Error Page Styles */

.error-message {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

.form-actions {
    margin-top: 24px;
}

.continue-button {
    width: 100%;
    background-color: #000;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-sizing: border-box;
}

.continue-button:hover {
    background-color: #333;
}

/* Mobile responsive styles - centered and bigger */
@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 20px 0;
    }

    .upper-logo {
        display: none;
    }

    .login-container {
        width: 90%;
        max-width: 500px;
        margin: auto;
        padding: 0 20px;
    }

    .form {
        width: 100%;
        padding: 32px 24px;
        box-sizing: border-box;
    }

    footer {
        position: static;
        text-align: center;
        margin-top: 24px;
        padding: 16px;
    }
} 
