body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    display: flex;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.split-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.left-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: white;
}
.right-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4eedd;
    padding: 40px;
    height: 100vh;
}
.construction-image {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
}
.sign-in-form {
    width: 100%;
    max-width: 400px;
}
.g_id_signin {
    margin-bottom: 24px;
    width: 100%;
}
.g_id_signin > div {
    width: 100% !important;
}
.or-divider {
    text-align: center;
    margin: 24px 0;
    color: #5f6368;
    font-size: 14px;
    position: relative;
}
.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dadce0;
}
.or-divider::before {
    left: 0;
}
.or-divider::after {
    right: 0;
}
.email-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #3c4043;
    margin-bottom: 24px;
    box-sizing: border-box;
    height: 40px;
    display: flex;
    align-items: center;
}
.email-input::placeholder {
    color: #64696d;
}
.email-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}
.continue-button {
    width: 100%;
    padding: 12px 24px;
    background: #1a73e8;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.continue-button:hover {
    background: #1557b0;
}
.privacy-text {
    font-size: 12px;
    color: #5f6368;
    text-align: center;
    line-height: 1.4;
}
.privacy-text a {
    color: #1a73e8;
    text-decoration: none;
}
.privacy-text a:hover {
    text-decoration: underline;
}
h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}
p {
    color: #666;
    font-size: 16px;
}
.user-info {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    display: none;
}
.floating-profile {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}
.profile-button {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: white;
    border: 2px solid #4285f4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.profile-button:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
}
.google-text {
    color: #4285f4;
    font-weight: 500;
    font-size: 14px;
}
.dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    display: none;
}
.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    color: #333;
    border-bottom: 1px solid #eee;
}
.dropdown-item:hover {
    background-color: #f5f5f5;
}
.dropdown-item:last-child {
    border-bottom: none;
    color: #d93025;
}