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

body {
    font-family: 'Roboto Condensed', sans-serif;
    min-height: 100vh;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

.login-left {
    align-items: flex-start;
    background: linear-gradient(135deg, #0E2A2D 0%, #2E315E 50%, #371749 100%);
    color: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    position: relative;
}

.login-left::before {
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10v20c5.5 0 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.login-left > * {
    position: relative;
    z-index: 1;
}

.login-brand {
    align-items: center;
    display: flex;
    font-size: 1.6rem;
    font-weight: 700;
    gap: 10px;
    margin-bottom: 50px;
}

.login-brand i {
    color: #42b8b8;
    font-size: 1.8rem;
}

.login-tagline h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 360px;
}

.login-tagline p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 340px;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.feature-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.feature-item i {
    color: #42b8b8;
    font-size: 1rem;
    width: 20px;
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.login-right {
    align-items: center;
    background: #f5f6f8;
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 40px;
}

.login-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 380px;
    padding: 40px 36px;
    text-align: center;
    width: 100%;
}

.login-logo {
    align-items: center;
    background: linear-gradient(135deg, #0E2A2D 0%, #2E315E 50%, #371749 100%);
    border-radius: 14px;
    color: #42b8b8;
    display: inline-flex;
    font-size: 1.8rem;
    height: 60px;
    justify-content: center;
    margin-bottom: 20px;
    width: 60px;
}

.login-header {
    margin-bottom: 32px;
}

.login-header h2 {
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.login-header p {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

.alert {
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding: 12px 16px;
    text-align: left;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.btn-google {
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    display: flex;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 10px;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-google:hover {
    background: #fafafa;
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-google:active {
    transform: scale(0.98);
}

.btn-google svg {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
}

.login-footer {
    margin-top: 28px;
}

.login-footer p {
    color: #aaa;
    font-size: 0.75rem;
    line-height: 1.5;
}

.login-footer a {
    color: #8a29ad;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .login-left {
        display: none;
    }

    .login-right {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .login-box {
        border-radius: 12px;
        padding: 32px 24px;
    }

    .login-header h2 {
        font-size: 1.3rem;
    }

    .login-logo {
        font-size: 1.5rem;
        height: 52px;
        width: 52px;
    }
}
