.login-container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.login-content {
    width: 100%;
    max-width: 28rem;
    position: relative;
    z-index: 10;
}

.login-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #2563eb;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.login-logo-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.login-title {
    color: white;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #bfdbfe;
    font-size: 1rem;
}

.login-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.login-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-card-title {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-card-description {
    color: #4b5563;
    font-size: 0.875rem;
}

.login-button {
    width: 100%;
    background: white;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.login-button:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.login-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.login-divider {
    position: relative;
    margin: 1.5rem 0;
}

.login-divider-line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.login-divider-line::before {
    content: '';
    width: 100%;
    border-top: 1px solid #d1d5db;
}

.login-divider-text {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}

.login-divider-text span {
    padding: 0 1rem;
    background: white;
    color: #6b7280;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.login-feature-icon {
    width: 2rem;
    height: 2rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer-text {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.login-footer-subtext {
    color: #93c5fd;
    font-size: 0.75rem;
}

.login-bg-decoration-1 {
    position: fixed;
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
}

.login-bg-decoration-2 {
    position: fixed;
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: #a855f7;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
}
