* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #F5F6F8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.login-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.2;
}

.btn-google {
    width: 100%;
    padding: 12px 16px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.2s;
    margin-bottom: 24px;
}

.btn-google:hover {
    background: #F9FAFB;
}

.btn-google:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

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

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.divider-text {
    position: relative;
    background: #FFFFFF;
    padding: 0 16px;
    color: #6B7280;
    font-size: 0.875rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: #111827;
    background: #FFFFFF;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.btn-continue {
    width: 100%;
    padding: 12px 16px;
    background: #4F46E5;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.btn-continue:hover {
    background: #4338CA;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.btn-continue:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }

    .login-title {
        font-size: 1.5rem;
    }
}
