* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #00005a;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 75%;
    height: 80vh;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.left-container {
    flex: 0.6;
    position: relative;
    background-color: #00005a;
}

.left-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e45200;
    opacity: 0.5;
}

.right-container {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 300px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 60px;
}

.login-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    color: #000;
}

.login-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    width: 80%;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 12px 16px;
    margin-bottom: 16px;
    width: 70%;
    cursor: pointer;
    transition: background-color 0.4s;
    background: none;
}

.social-button:hover {
    background-color: #f2f2f2;
}

.social-button img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.social-button span {
    font-size: 16px;
    color: #000;
}

.help-container {
    margin-top: 16px;
    display: flex;
    gap: 5px;
}

.help-text {
    font-size: 16px;
    color: #666;
}

.help-link {
    font-size: 16px;
    color: #00005a;
    text-decoration: underline;
    cursor: pointer;
}

.error-message {
    color: red;
    margin: 16px 0;
    text-align: center;
    width: 70%;
    font-size: 14px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.social-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-content.loading .spinner {
    display: inline-block;
}

.button-content.loading img,
.button-content.loading span {
    display: none;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .left-container {
        display: none;
    }
}
