/* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-side h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-badge {
    margin-top: 30px;
    padding: 8px 15px;
    background: rgba(79, 172, 254, 0.2);
    border: 1px solid #4facfe;
    border-radius: 50px;
    width: fit-content;
    font-size: 0.9rem;
}

.auth-side {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    display: flex;
    align-items: center;
}

.auth-card {
    width: 100%;
}

h2 { margin-bottom: 25px; font-weight: 500; }

.input-group { margin-bottom: 20px; }

label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #ccc; }

input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    outline: none;
}

input:focus { border-color: #4facfe; }

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover { background: #00f2fe; transform: translateY(-2px); }

.form-footer {
    margin-top: 20px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-footer a { color: #4facfe; text-decoration: none; }

.hidden { display: none; }

#message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    background: rgba(0, 255, 127, 0.2);
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .content-side, .auth-side { padding: 40px 20px; }
}