
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.welcome-section {
    flex: 2;
    background-color: #faf8f6;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    
}
.imagen-grande {
    width: 20%; 
    height: auto; 
    position: absolute;
    top: 40%;
    
}

img {
    -webkit-user-drag: none; /* Para Safari */
    user-drag: none; /* Para otros navegadores */
}


.welcome-section h1 {
    position: absolute;
    font-size: 3.5rem;
    top: 2%; 
    margin-bottom: 15px;
    font-family: 'verdana';
}

.welcome-section p {
    font-size: 3.0rem;
    margin-bottom: 20px;
    font-family: 'Courier New';
    letter-spacing: 3px;
    position: absolute;
    top:15%;

}

.welcome-section .icon {
    width: 120px;
    height: auto;
    margin-top: 10px;
}

.login-section {

    flex: 1;
    background-color: #0D0169;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;

}

.login-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Times';
    letter-spacing: 1.5px;
}

.login-section hr {
    border: none;
    height: 2px;
    background-color: #ffffff;
    margin: 20px 0 40px;
}


.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.input-group label img {
    width: 24px;
    margin-right: 10px;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    background-color: transparent;
    color: #000;
    text-align: center; 
}

.welcome-section h3 {
    font-size: 1rem;
    font-family: 'verdana';
    font-weight: 100;
    letter-spacing: 20px;
    display: flex;
    position: absolute;
    top: 87%;

    
}

.bad {
	position: absolute;
	top: 80%;
	text-align: center;
	width: 28%;
	padding: 12px;
    font-size: 24px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 8px;
    margin-left: 65%
}
.success{
    position: absolute;
	top: 80%;
	text-align: center;
	width: 28%;
	padding: 12px;
	color: #ffffff;
    font-size: 24px;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: 8px;
    margin-left: 65%
}

.btn {
    width: auto;  
    padding: 12px 25px;  
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #48AA2A;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    margin: 0 auto; 
    display: block; 
    transition: color 0.3s; 
    margin-top: 40px; 
    margin-left: 33%;
}

.btn:hover {
    background-color: #40db11; 
}
.img-logo{
    display:flex;
    position:absolute;
    width: 150px;
    margin-left: 10%;
    top: 0;
}

.olv{
    color: white;
    margin-left: 35%;
}



@media (max-width: 660px) {
    .container {
        flex-direction: column;
        height: 100%;
        display: flex;
    }



    .welcome-section h1 {
        display: flex;
        position: absolute;
        font-size: 20px;
        top: 5%;
        margin-left: -4%;
        font-family: 'Courier New';
        letter-spacing: 3px;
    }
    .welcome-section {
       display: flex;
       width: 31.5%;
       position: absolute;
       align-items: center;
       height: 100%;
        
    }

    .login-section {
        display: flex;
        position: absolute;
        padding: 10px;
        margin-left: 40%;
        width: 50%;
        left: 5%;
        height: 100%;
        width: 51.2%;
                
    }
    .welcome-section p {
        font-size: 16px;
        margin-bottom: 15px;
        font-family: 'Courier New';
        letter-spacing: 3px;
        display: flex;
        position: absolute;
        margin-left: -10%;
        top: 20%;
    }
    .imagen-grande {
        width: 80%;  
        display: flex;
        position: absolute;
        top: 42%;
        margin-left: -6%;
        }

    .welcome-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        font-family: 'Courier New';
        letter-spacing: 3px;
        display: flex;
        position: absolute;
        top: 78%;
        margin-left: -7.5%;
        
    }
    .img-logo{
    width: 160px;
    margin-left: 10%;
  
}


}