/* style.css (paste entire file) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

/* Left Side */
.left-side {
    flex: 1;
    background: linear-gradient(180deg, #8b7a9e 0%, #d4b5c8 50%, #e8c5d4 100%);
    display: flex;
    align-items: flex-start;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.left-side::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path d="M100,300 L150,250 L150,350 L100,350 Z M150,250 L200,200 L200,350 L150,350 Z M200,200 L250,250 L250,350 L200,350 Z M250,250 L300,300 L300,350 L250,350 Z" fill="%23324c6c" opacity="0.3"/></svg>') no-repeat center bottom;
    background-size: contain;
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #324c6c;
    font-size: 24px;
    font-weight: 500;
    z-index: 1;
}

.logo svg {
    width: 40px;
    height: 40px;
}

/* Right Side */
.right-side {
    flex: 1;
    background: #fff;
    padding: 40px 60px;
    overflow-y: auto;
    position: relative;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #999;
}

.flags {
    display: flex;
    gap: 8px;
}

.flags img {
    width: 24px;
    height: 16px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

/* Login Form */
.login-form {
    max-width: 400px;
    margin: 60px auto 0;
}

.greeting h1 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.greeting-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

/* Credentials Box */
.credentials-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9fc 100%);
    border: 2px solid #2563bc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(37, 99, 188, 0.1);
}

.credentials-box h3 {
    font-size: 16px;
    color: #2563bc;
    margin-bottom: 12px;
    font-weight: 600;
}

.credentials-box .cred-item {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

.credentials-box code {
    background: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #2563bc;
    font-weight: 600;
    border: 1px solid #ddd;
    margin-left: 8px;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #999;
    font-size: 11px;
    color: #999;
    cursor: help;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
}

.input-wrapper {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b7dd6;
}

.form-group input::placeholder {
    color: #bbb;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 8px;
    font-size: 13px;
    color: #3b7dd6;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.info-2fa {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.info-2fa p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.access-btn {
    width: 100%;
    padding: 14px;
    background: #2563bc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 30px;
}

.access-btn:hover {
    background: #1d4e99;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.app-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.app-btn:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

.desktop-icon {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.desktop-icon a {
    color: #3b7dd6;
    text-decoration: none;
}

.desktop-icon a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-links a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.footer-links a:hover {
    color: #666;
    text-decoration: underline;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-notice p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.cookie-notice a {
    color: #3b7dd6;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .left-side {
        min-height: 150px;
        padding: 20px;
    }

    .right-side {
        padding: 30px 20px;
    }

    .login-form {
        margin-top: 20px;
    }
}
