/* Google Workspace Login - Base Styles */
body.login-page {
    background-color: #f8f9fa;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
    border: 1px solid #dadce0;
    max-width: 448px;
    width: 100%;
    padding: 48px 40px 36px;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.google-logo {
    width: 300px;
    height: 75px;
    margin-bottom: 16px;
}

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

.login-subtitle {
    color: #5f6368;
    font-size: 16px;
    font-weight: 400;
}
/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    color: #5f6368;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: transparent;
    border: 1px solid #dadce0;
    border-radius: 4px;
    color: #202124;
    font-size: 16px;
    height: 56px;
    padding: 13px 15px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: #1a73e8;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    outline: none;
}

.form-control:hover {
    border-color: #5f6368;
}

.btn-google {
    background-color: #1a73e8;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    padding: 0 24px;
    width: 100%;
    transition: background-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-google:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(66,133,244,0.3), 0 1px 3px 1px rgba(66,133,244,0.15);
}

.btn-google:active {
    background-color: #1246a8;
}

.btn-google:focus {
    background-color: #1557b0;
    outline: none;
}

/* Error Styles */
.error-message {
    background-color: #fce8e6;
    border: 1px solid #d93025;
    border-radius: 4px;
    color: #d93025;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 8px 12px;
}

.field-error {
    color: #d93025;
    font-size: 12px;
    margin-top: 4px;
}

.form-control.error {
    border-color: #d93025;
}

.form-control.error:focus {
    border-color: #d93025;
    box-shadow: inset 0 1px 2px rgba(217,48,37,0.1);
}

/* Links and Footer */
.register-link {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8eaed;
}

.register-link a {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.footer-info {
    color: #5f6368;
    font-size: 12px;
    text-align: center;
    margin-top: 24px;
    line-height: 1.4;
}

/* Responsive and Animations */
@media (max-width: 768px) {
    .login-card {
        margin: 20px;
        padding: 32px 24px;
    }
    
    .google-logo {
        width: 300px;
        height: 60px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
}

.login-card {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    color: #5f6368;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: transparent;
    border: 1px solid #dadce0;
    border-radius: 4px;
    color: #202124;
    font-size: 16px;
    height: 56px;
    padding: 13px 15px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: #1a73e8;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    outline: none;
}

.form-control:hover {
    border-color: #5f6368;
}

.btn-google {
    background-color: #1a73e8;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    padding: 0 24px;
    width: 100%;
    transition: background-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-google:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(66,133,244,0.3), 0 1px 3px 1px rgba(66,133,244,0.15);
}

.btn-google:active {
    background-color: #1246a8;
}

.btn-google:focus {
    background-color: #1557b0;
    outline: none;
}
