@import 'common.css';

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --background-color: #f4f6f9;
    --text-color: #333;
    --border-radius: 8px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body.reset-page {
    background-color: var(--background-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.reset-form-wrapper {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reset-logo {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
    transition: transform 0.3s ease;
}

.reset-logo:hover {
    transform: scale(1.05);
}

.reset-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reset-description {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.reset-form .form-floating {
    margin-bottom: 1rem;
}

.reset-form .form-floating input {
    border-radius: var(--border-radius);
}

.reset-form .btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.reset-form .btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.reset-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reset-links a:hover {
    color: darken(var(--primary-color), 15%);
    text-decoration: underline;
}

.alert-info, .alert-danger {
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.alert-info i, .alert-danger i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .reset-form-wrapper {
        padding: 1rem;
        margin: 0 15px;
    }

    .reset-logo {
        max-width: 150px;
    }
}