/* Google Sign In Styles - แบบ Agoda */

.google-signin-section {
    margin: 20px 0;
    text-align: center;
}

.divider {
    position: relative;
    margin: 25px 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: #fff;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.google-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.google-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.google-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.btn-google-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    color: #3c4043;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.btn-google-signin:hover {
    background: #f8f9fa;
    border-color: #c6c8ca;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.btn-google-signin:active {
    background: #f1f3f4;
    transform: translateY(1px);
}

.btn-google-signin i {
    font-size: 18px;
    color: #4285f4;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

/* Logged In State */
.logged-in-state {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.logged-in-state i {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-buttons {
        gap: 12px;
    }
    
    .btn-google-signin {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .divider span {
        font-size: 13px;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .btn-google-signin {
        min-width: 160px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .google-label {
        font-size: 13px;
    }
}