* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 50px;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form input {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.login-form button {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    background-color: #1877f2;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #155db2;
}

.forgot-password {
    color: #1877f2;
    text-decoration: none;
    margin-bottom: 20px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.create-account {
    background-color: #42b72a;
    margin-top: 10px;
}

.create-account:hover {
    background-color: #36a420;
}

footer p {
    margin-top: 20px;
    color: #606770;
    font-size: 14px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal .modal-content {
    background-color: white;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: normal;
}

.modal p {
    color: #666;
    font-size: 0.9em;
}

.modal .buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.modal .obtener-codigo {
    color: #000;
    cursor: pointer;
    font-size: 0.9em;
}

.modal .aceptar {
    background-color: transparent;
    color: #007bff;
    border: none;
    font-size: 0.9em;
    cursor: pointer;
}
