.auth-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.auth-visual {
    flex: 1;
    background: linear-gradient(135deg, #009D71 0%, #005a41 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
}

@media (max-width: 768px) {
    .auth-visual { display: none; }
}

.auth-visual-content {
    max-width: 400px;
    text-align: center;
}

.floating-logo {
    width: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.auth-visual h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.auth-visual h1 span {
    font-weight: 300;
}

.auth-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 40px;
}

.auth-form-box {
    width: 100%;
    max-width: 400px;
}

.form-logo {
    width: 120px;
    margin-bottom: 30px;
    display: flex;
}

.tag {
    display: inline-block;
    background: rgba(0, 157, 113, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-google img {
    width: 20px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 157, 113, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    border-radius: var(--border-radius);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.switch-auth {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.switch-auth a {
    color: var(--primary-color);
    font-weight: 700;
}

.message {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
    min-height: 20px;
}

.message.error { color: var(--error-color); }
.message.success { color: var(--primary-color); }
