/**
 * Frontend Styles for Google Workspace Authentication
 */

/* Login button container */
.gwa-login-container {
    margin: 20px 0;
    text-align: center;
}

/* Default button style */
.gwa-login-button.gwa-default-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gwa-login-button.gwa-default-style:hover {
    background: #f8f9fa;
    border-color: #d2d5d9;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.gwa-login-button.gwa-default-style:active {
    background: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Google icon */
.gwa-google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Login form specific styles */
#loginform .gwa-login-button.gwa-default-style {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 600px) {
    .gwa-login-button.gwa-default-style {
        width: 100%;
        padding: 10px 20px;
    }
}
