/* Login page specific styles */
body {
    background: rgba(121, 79, 153, 0.92);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

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

.login-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    font-size: 0.9rem;
}

.btn {
    width: 100%;
}

.setup-link {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.setup-link a {
    color: rgba(121, 79, 153, 0.92);
    text-decoration: none;
    font-size: 0.9rem;
}

.setup-link a:hover {
    text-decoration: underline;
}

.default-credentials {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.default-credentials strong {
    display: block;
    margin-bottom: 0.5rem;
}
