body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    height: 100vh;
}

.left-column {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.right-column {
    flex: 1;
    background-color: #5034FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin: 0 0 20px 0;
}

.google-btn, .continue-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.google-btn {
    background-color: white;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-btn img {
    margin-right: 10px;
}

.continue-btn {
    background-color: #0073ea;
    color: white;
    transition: background-color 0.3s ease;
}

.continue-btn:hover {
    background-color: #005bb7;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #666;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.terms {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.terms a {
    color: #0073ea;
    text-decoration: none;
}

.certifications {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.certifications img {
    margin: 0 5px;
    height: 40px;
}

.login-link {
    text-align: center;
}

.login-link a {
    color: #0073ea;
    text-decoration: none;
}

.illustration {
    max-width: 70%;
    max-height: 80%;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .right-column {
        display: none;
    }
}

.hidden {
    display: none !important;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-container {
    text-align: center;
}

#input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.answer-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.answer-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.answer-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

#ask-another-btn {
    margin-top: 10px;
}
