:root {
    --g-blue: #1a73e8;
    --g-blue-hover: #1557b0;
    --g-dark: #202124;
    --g-subtext: #5f6368;
    --g-border: #dadce0;
    --g-bg-left: #f8f9fa;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--g-dark);
    font-size: 0.875rem;
    -webkit-font-smoothing: antialiased;
}

.login-wrapper {
    min-height: 100vh;
}

/* PANEL KIRI: Dominan (60% - 65% Layar) */
.left-panel {
    background-color: var(--g-bg-left);
    border-right: 1px solid var(--g-border);
    padding: 4.5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.g-cloud-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--g-dark);
}

.g-cloud-icon {
    color: var(--g-blue);
    font-size: 1.6rem;
}

.cloud-badge {
    background-color: #e8f0fe;
    color: var(--g-blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Metric Mini Card */
.metric-card {
    background: #ffffff;
    border: 1px solid var(--g-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(60,64,67,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60,64,67,0.1);
}

/* PANEL KANAN: Compact / Lebih Kecil (35% - 40% Layar) */
.right-panel {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
}

.form-container {
    width: 100%;
    max-width: 340px; /* Lebar form dibuat serasi & compact */
}

/* Floating Input Group Google Style */
.g-input-group {
    position: relative;
    margin-bottom: 1.15rem;
}

.g-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    font-size: 0.875rem;
    border: 1px solid var(--g-border);
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    color: var(--g-dark);
    transition: all 0.2s ease;
}

.g-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--g-subtext);
    font-size: 1rem;
}

.g-input:focus {
    border-color: var(--g-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.g-input::placeholder {
    color: #9aa0a6;
}

/* Captcha Box Compact */
.captcha-box {
    background: #f8f9fa;
    border: 1px solid var(--g-border);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

#captchaCodeText {
    letter-spacing: 5px;
    color: var(--g-blue);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 3px 10px;
    user-select: none;
}

.btn-refresh {
    background: none;
    border: none;
    color: var(--g-subtext);
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.btn-refresh:hover {
    color: var(--g-dark);
    transform: rotate(90deg);
}

/* Button Google Blue */
.btn-g-primary {
    background-color: var(--g-blue);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
    transition: all 0.2s ease;
    width: 100%;
}

.btn-g-primary:hover {
    background-color: var(--g-blue-hover);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(60,64,67,0.4);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--g-subtext);
}

.footer-text a {
    color: var(--g-subtext);
    text-decoration: none;
}

.footer-text a:hover {
    color: var(--g-dark);
}
        
.progress-container {
  width: 100%;
  height: 3px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #7751a2, #fd8e34, #7751a2);
  background-size: 200% 100%;
  animation: loading 2s infinite linear;
}

@keyframes loading {
  0% { margin-left: -30%; }
  100% { margin-left: 100%; }
}         