/**
 * N.Honest Admin Login Styles
 */

body {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 5px;
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
    padding: 0.75rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.alert {
    display: none;
    margin-bottom: 1rem;
    border-radius: 5px;
    padding: 0.75rem 1rem;
} 