body {
    font-family: "poppins" Arial, sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.reset-container {
    background: #ffffff;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.reset-container:hover {
    transform: translateY(-5px);
}

h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.error {
    color: ##a60b00;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 0.5rem;
}

.success {
    color: ##a60b00;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 0.5rem;
}

.success a {
    color: #000000;
    text-decoration: none;
}

.success a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

label {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.25rem;
    display: block;
}

input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #000000;
    outline: none;
}

small {
    font-size: 0.8rem;
    color: #737373;
    margin-top: 0.25rem;
    display: block;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: #ffffff;
    white-space: nowrap;
    background-color: #000000;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #a60b00;
}

.login-link {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 1rem;
}

.login-link a {
    color: #000000;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}