body {
    background-color: #f5f7fa;
    font-family: 'Open Sans', sans-serif;
}

.top-bar {
    background-color: #2D5F9A;
    padding: 0.75rem 1rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-name {
    font-weight: bold;
    font-size: 1.25rem;
    color: #ffffff;
}

.top-menu {
    display: flex;
    gap: 1.5rem;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.top-link:hover {
    color: #cbdaf0;
    text-decoration: underline;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    max-width: 440px;
    width: 100%;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2D5F9A;
}

.login-logo {
    width: 50px;
    height: auto;
}

.form-control:focus {
    border-color: #2D5F9A;
    box-shadow: 0 0 0 0.2rem rgba(45, 95, 154, 0.25);
}

.btn {
    background-color: #2D5F9A;
    border-color: #2D5F9A;
}

.btn:hover {
    background-color: #244c7c;
    border-color: #244c7c;
}

.text-muted small {
    display: block;
    margin-top: 1rem;
}

.info-list {
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.alert-danger {
    font-size: 0.9rem;
}

.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f5f7fa;
}

.register-box {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    max-width: 820px;
    width: 100%;
}

fieldset {
    border-left: 4px solid #2D5F9A;
    padding-left: 1rem;
    margin-top: 1rem;
}

legend {
    font-weight: 600;
    color: #2D5F9A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.register-box .btn {
    background-color: #2D5F9A;
    border-color: #2D5F9A;
    color: #fff;
}

.register-box .btn:hover {
    background-color: #244c7c;
    border-color: #244c7c;
}