* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* FONDO GENERAL */
body {
    background: #dcdcdc;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #f5f5f5;
}

.logo {
    font-weight: bold;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    font-style: italic;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    font-size: 18px;
}

.btn-login {
    background: #4c6fff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

/* TITULO */
.titulo {
    text-align: center;
    margin: 30px 0;
    font-family: serif;
    font-style: italic;
}

/* CONTENEDOR */
.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* LADO IZQUIERDO */
.side {
    width: 250px;
    height: 500px;
    background: linear-gradient(#2c2c2c, #111);
}

/* FORMULARIO */
.form-box {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 10px;
    width: 650px;
    color: white;
}

/* INPUTS */
.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #ccc;
}

.input-group input,
.input-group select {
    padding: 10px;
    border: none;
    outline: none;
    background: #eee;
}

/* FILAS */
.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

/* BOTON */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #3b6edc;
    border: none;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .side {
        display: none;
    }

    .form-box {
        width: 100%;
    }
}