.reset-password-main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e9f4ff, #ffffff);
    font-family: "Segoe UI", sans-serif;
}

.reset-password-section {
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.reset-password-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.reset-icon {
    width: 60px;
    margin-bottom: 15px;
}

.reset-header h2 {
    color: #2563eb;
    margin-bottom: 10px;
}

.reset-header p {
    font-size: 14px;
    color: #555;
}

.reset-password-container input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.reset-password-container input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.reset-password-container button {
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.reset-password-container button:hover {
    background: #1e40af;
}

.success {
    color: green;
    font-weight: 500;
}

.error {
    color: red;
    font-weight: 500;
}

.back-login a {
    text-decoration: none;
    color: #2563eb;
    font-size: 14px;
}

.back-login a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .reset-password-container {
        padding: 20px;
    }
}