.login-container {
    max-width: 400px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-logo {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #2b4a6f;
    margin-bottom: 20px;
}

.login-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-tab button {
    flex: 1;
    border-radius: 30px;
}

.login-btn-social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.login-btn {
    background-color: #1d4b73;
    border: none;
    border-radius: 8px;
}

.login-btn:hover {
    background-color: #163a59;
}

