/* --- Base & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    padding: 20px 40px;
}

/* --- Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo-container img {
    height: 35px; 
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.globe-icon {
    font-size: 1.1rem;
    filter: grayscale(100%);
    opacity: 0.4;
}

.language-selector select {
    border: none;
    background: transparent;
    color: #4a90e2;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 15px;
}

/* --- Layout Principal --- */
.login-container {
    max-width: 1100px;
    margin: 0 auto;
}

.login-content {
    display: flex;
    justify-content: center; 
    gap: 150px; /* Le grand espace central */
    align-items: flex-start;
}

/* ========================================= */
/* --- COLONNE GAUCHE (Ultra Compacte) --- */
/* ========================================= */
.login-column {
    width: 280px; 
}

.login-column h1 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 25px; 
    color: #222;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.field-group {
    margin-bottom: 12px; 
}

.field-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px; 
    color: #000;
}

.field-group input[type="text"],
.field-group input[type="password"] {
    width: 100%;
    border: 1px solid #4a90e2;
    border-radius: 2px; 
    padding: 4px 6px; 
    font-size: 0.9rem;
    outline: none;
}

/* Le champ Vzhľad horizontal */
.inline-field {
    display: flex;
    align-items: center;
    gap: 20px; 
    margin-bottom: 15px;
}

.inline-field label {
    margin-bottom: 0; 
}

.inline-field select {
    width: 180px; 
    border: 1px solid #4a90e2;
    border-radius: 2px;
    padding: 4px;
    background-color: #e9e9ed; 
    font-size: 0.9rem;
    outline: none;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px; 
}

.checkbox-group input {
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 0.75rem; 
    color: #333;
    line-height: 1.2;
}

/* Bouton Vstúpiť */
.button-container {
    display: flex;
    justify-content: flex-start; 
    padding-left: 20px; 
}

button[type="submit"] {
    margin-top: 15px;
    padding: 10px 35px;
    background-color: transparent;
    border: 2px dotted #aaa;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

/* ========================================= */
/* --- COLONNE DROITE (Informations) ---   */
/* ========================================= */
.info-sidebar {
    width: 480px;
    margin-top: 55px; /* Décalage vers le bas aligné sur le formulaire */
}

.info-box-1, .info-box-2 {
    border: 1px dashed #999;
    padding: 25px 30px;
    margin-bottom: 35px;
}

.info-box-1 ul {
    list-style: none;
}

.info-box-1 li {
    margin-bottom: 6px;
}

.info-box-1 a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

.info-box-1 a:hover {
    text-decoration: underline;
}

.info-box-2 h2 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.warning-text {
    color: red;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.info-box-2 p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.administrator-sign {
    margin-top: 20px;
    display: block;
}

/* --- Footer --- */
.main-footer {
    margin-top: 100px;
    text-align: center;
    font-size: 0.75rem;
    color: #0056b3;
}

.main-footer a {
    color: #0056b3;
    text-decoration: none;
    margin: 0 5px;
}