﻿:root {
    --primary: #4f46e5;
    --text-main: #111827;
    --text-secondary: #6b7280;
    --border: #d1d5db;
}

body {
    background-color: #eeedff;
}

.login-wrapper {
    padding: 16px;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 420px;
    padding: 48px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin: 50px auto 60px auto;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
}

.company-logo {
    margin-bottom: 28px;
    height: 90px;
}

.login-header {
    margin-bottom: 24px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: white;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.google-btn:active {
    transform: translateY(0);
}

.google-icon {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider::before {
    margin-right: 16px;
}

.divider::after {
    margin-left: 16px;
}

.alternative-option {
    font-size: 14px;
    color: var(--text-secondary);
}

.alternative-option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.alternative-option a:hover {
    text-decoration: underline;
}