* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../img/login_prueba.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 800px;
    height: auto;
}

.login-left {
    background-image: url('../img/login.jpg');
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    padding: 20px;
    position: relative;
}

.login-left h1 {
    font-size: 2.5rem;
    color: white;
    margin-top: 20px;
}

.login-left p {
    font-size: 1.2rem;
    margin-top: auto;
    color: white;
}

.company-logo {
    width: 120px;
    height: auto;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
}

.login-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 100%;
}

.profile-pic {
    text-align: center;
    margin-bottom: 20px;
}

.profile-pic img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.alert {
    margin-top: 10px;
    margin-bottom: 10px; /* Evitar que las alertas se desplacen mucho */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 1rem;
}

.login-btn {
    background-color: #004080;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.login-btn:hover {
    background-color: #003060;
}

.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.links a {
    color: #004080;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}
