/* Google Login Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 48px 40px 36px;
}

.logo-section {
    text-align: center;
    margin-bottom: 12px;
}

.google-logo {
    font-size: 24px;
    color: #5f6368;
    font-weight: 400;
}

.title {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    margin: 0 0 8px 0;
}

.subtitle {
    font-size: 16px;
    color: #202124;
    margin-bottom: 24px;
}

.identity-banner {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}

.back-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #5f6368;
}

#display-email {
    font-size: 16px;
    color: #202124;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #1a73e8;
    border-width: 2px;
    padding: 12px 14px;
}

.show-password {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message {
    color: #d93025;
    font-size: 12px;
    margin-bottom: 16px;
}

.form-footer {
    margin-bottom: 24px;
}

.form-footer a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

.btn-primary:hover {
    background-color: #1765cc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a73e8;
}

.btn-secondary:hover {
    background-color: #f7f8f9;
}

.login-footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-footer select {
    border: none;
    color: #5f6368;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    text-decoration: underline;
}
