body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
}

.reset-section .containerr {
    
        max-width: 400px;
        margin: 3rem auto;
        background: white;
        padding: 2rem 2.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.40);
        text-align: center;
        
}

.reset-section h2 {
    font-size: 1.8rem;
    color: #101136;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reset-section p {
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    text-align: left;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    background-color: #101136;
    color: white;
    font-size: 1.1rem;
    border: 1px solid #101136;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #0c0f2b;
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.alert.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.alert.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.back-link {
    display: block;
    margin-top: 1rem;
    color: #101136;
    font-size: 0.95rem;
    text-decoration: underline;
    text-align: center;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0c0f2b;
}