* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;   
}

body {
    height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

/* Panel de login (izquierda) */
.login-panel {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

#login-logo{
    margin: 10px;
  }

.logo-text {
    color: #333;
    font-size: 16px;
}

.login-form label {
    display: block;
    color: #003366;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff0000;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* Estilo para el switch toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #003366;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.login-button, .modal-buttons button {
    width: 100%;
    padding: 12px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #002244;
}

/* Panel de bienvenida (derecha) */
.welcome-panel {
    flex: 1;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.welcome-content {
    margin-top: 40px;
}

.welcome-content h1 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: normal;
}

.welcome-content p {
    font-size: 16px;
    margin-bottom: 40px;
}

.welcome-content h2 {
    font-size: 36px;
    font-weight: normal;
}

.install-app {
    margin-bottom: 20px;
    text-align: center;
}

.install-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 4px 12px;
    width: 100%;
    margin: auto;
    cursor: pointer;
    margin-bottom: 10px;
}

.app-name {
    font-size: 14px;
}

/* modal */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 80%;
}
.modal-content h2 {
    border-bottom: 1px solid;
    padding: 0 0 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-buttons {
    margin-top: 20px;
    text-align: right;
}
.modal-buttons button {
    margin: 10px 0;
    width: auto;
}

.modal-footer {
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: gray;
}

.bold { 
    font-weight: bold;
}

.black {
    color: black;
}

.text-left {
    text-align: left; 
}
.note {
    font-size: 12px;
    color: gray;
}
.note-title {
    font-size: 14px;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .login-panel {
        max-width: 100%;
        height: 100%;
    }
    
    .welcome-panel {
        display: none; /* Ocultar panel decorativo en móviles */
    }
    
}


