/* Styles extracted from accounts/templates/accounts/password_reset.html */

.reset-container {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.reset-card {
    background: #151515;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    border: 1px solid #222;
}

.reset-card h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.reset-card .subtitle {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ddd;
}

.field input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-size: 16px;
}

.field input:focus {
    border-color: #675cff;
    box-shadow: 0 0 0 2px rgba(103, 92, 255, 0.3);
}

.btn-reset {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #6a5af9, #816bff);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 17px;
    cursor: pointer;
    margin-top: 5px;
    transition: .2s;
}

.btn-reset:hover {
    background: linear-gradient(90deg, #5948f6, #7a61ff);
}

.error {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 4px;
}

.links {
    margin-top: 25px;
    text-align: center;
}

.links a {
    color: #7c86ff;
    text-decoration: none;
}

.links a:hover {
    color: #9aa0ff;
}
