body.login-page {
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    max-width: 450px;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-logo {
    max-width: 250px;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #081B4D;
    border-color: #081B4D;
    width: 100%;
}

.btn-primary:hover {
    background-color: #061539;
    border-color: #061539;
}

.form-control:focus {
    border-color: #081B4D;
    box-shadow: 0 0 0 0.25rem rgba(8, 27, 77, 0.25);
}