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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
}

/* Header */
.header {
    background: #03182f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.powered-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 120px);
}

/* Welcome Section */
.welcome-section {
    padding-right: 40px;
}

.welcome-section h1 {
    font-size: 42px;
    color: #03182f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-section .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    background: #03182f;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    text-align: center;
}

.trust-badge-number {
    font-size: 28px;
    font-weight: bold;
    color: #03182f;
    display: block;
}

.trust-badge-label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* Login Section */
.login-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: #03182f;
    box-shadow: 0 0 0 3px rgba(3, 24, 47, 0.1);
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: #03182f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background: #02152a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 24, 47, 0.3);
}

.error {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    display: none;
    padding: 12px;
    background: #ffebee;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.login-footer a {
    color: #03182f;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.login-footer a:hover {
    color: #0a3d6e;
}

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

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

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 13px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 40px;
    color: #666;
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #03182f;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-section {
        padding-right: 0;
        text-align: center;
    }

    .features-list li {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 40px 20px;
    }

    .welcome-section h1 {
        font-size: 32px;
    }

    .login-section {
        padding: 35px 25px;
    }

    .nav-container {
        padding: 0 20px;
    }
}
