body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #212121, #424242);
    color: white;
    transition: background 0.3s ease-in-out;
}

.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in-out;
}

h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
    text-align: center;
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease-in-out;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.2);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff; /* Classic blue background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-submit i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}


.alert {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.success {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.error {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.back-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.back-button:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.back-button span {
    font-weight: 700;
    letter-spacing: 1px;
}

=@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}
