body {
    font-family: 'Cabin', sans-serif;
    background-color: #0a0a0f;
    margin: 0;
    padding: 0;
    color: #eaeaea;
}

/* ---- Container ---- */
.password-reset-container {
    max-width: 420px;
    margin: 8vh auto;
    background: #191919;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
}

/* ---- Headers ---- */
.password-reset-container h2 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}

.password-reset-container p {
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ---- Form ---- */
.password-reset-container form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.password-reset-container label {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 5px;
}

/* ---- Input Fields ---- */
.password-reset-container input[type="email"],
.password-reset-container input[type="password"],
.password-reset-container input[type="text"] {
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 20px;
    background-color: #0f0f13;
    color: #ffffff;
    transition: border-color 0.3s, background-color 0.3s;
}

.password-reset-container input:focus {
    border-color: #007bff;
    background-color: #141419;
    outline: none;
}

/* ---- Buttons ---- */
.password-reset-container button,
.password-reset-container input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.password-reset-container button:hover,
.password-reset-container input[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

/* ---- Success / Info messages ---- */
.password-reset-container .message {
    color: #9ecaff;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 20px;
}

/* ---- Links ---- */
.password-reset-container a {
    color: #66aaff;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.password-reset-container a:hover {
    color: #99cfff;
    text-decoration: underline;
}

/* ---- Error messages ---- */
ul.errorlist {
    list-style: none;
    padding: 0;
    color: #ff5e5e;
    font-size: 14px;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 10px;
}
