/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0;
}

.login-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.login-card .form-control {
    border-radius: 0.5rem;
    height: 48px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.btn-login {
    border-radius: 0.5rem;
    height: 48px;
    font-weight: 600;
}

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Alert spacing fix */
.alert {
    margin-bottom: 1.5rem;
}
