body {
    font-family: 'Galano', sans-serif;
    margin: 0;
    padding: 2rem;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #003366;
    padding-bottom: 0.5rem;
    display: inline-block;
}

h2 {
    color: #0066cc;
    font-size: 22px;
    margin: 1rem 0;
}

.description {
    font-size: 16px;
    color: #666;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 70%;
}

.small-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.separator {
    color: #003366;
    margin: 2rem 0;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.separator:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #003366;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.separator span {
    background: white;
    position: relative;
    padding: 0 1rem;
    z-index: 1;
}

.login-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 2rem 0;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.login-button:hover {
    background: #0052a3;
}