* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: rgb(0, 0, 0);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0; 
}


section {
    display: flex;
    justify-content: center;
    align-items: center;
}



.side img {
    width: 100%;
    max-width:300%;
    height: 100%;
}

.login-container {
    max-width: 450px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    
}

.separator {
    width: 150px;
    height: 4px;
    background-color: #f7f7f7;
    margin: 24px;
}

.welcome-message {
    text-align: center;
    font-size: 1.1em;
    line-height: 28px;
    margin-bottom: 30px;
    color: #000000;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-control {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

input,
button {
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 1.2em;
   

}

input {
    width: 100%;
    background: #ffffff;
    color: #333433;
    letter-spacing: 0.5px;
    padding: 14px 64px;
}

input ~ i {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #848282;
    transition: color   0.4s;
}

input:focus ~ i {
    color: #3bc752;
}

button.submit {
    color: #ffffff;
    padding: 14px 64px;
    margin: 32px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    background-image: linear-gradient(to right, #5cc533, #0876a8);
    cursor: pointer;
    transition: opacity 0.4s;
    

}

button.submit:hover {
    opacity: 0.9;
    
}

/* ----  Responsiveness   ----  */
@media (max-width: 780px) {

    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .side {
        display: flex;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  .green-bar {
    background-color: #4CAF50; /* Color verde */
    padding: 10px; /* Ajusta el relleno según sea necesario */
    color: #fff; /* Color del texto en la barra */
    text-align: center;
  }