body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f7f9fc;
}

.container {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.login-section {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.login-form p {
    margin-bottom: 30px;
    color: #777;
    font-size: 14px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
}

.login-btn {
    width: 50%;
    max-width: 180px;
    padding: 12px;
    font-weight: 700;
    background-color: #ed1164;
    color: white;
    border: 1px solid #ed1164;
    border-radius: 1.5rem;
    border-width: 1px;
    font-size: .875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Poppins,sans-serif;
}

.login-btn:hover {
    background-color: #F6E0E8;
    color: #ed1164;
}

.login-btn:disabled,
.login-btn:disabled:hover {
    background-color: #ed1164;
    color: white;
    cursor: not-allowed;
}

.illustration {
    margin-top: 40px;
    padding: 20px;
    background: #f7f9fc;
    border: 1px dashed #ccc;
    color: #333;
    border-radius: 6px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.divider {
    text-align: center;
    margin-bottom: 10px;
    color: #999;
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Poppins,sans-serif;
    font-size: 2.115rem;
    text-decoration: none;
}

.cognito {
    background-color: #D85427;
}

.cognito:hover {
    background-color: #F6E0E8;
    color: #D85427;
}

#resultArea {
    display: none;
}