.background-section-login {
    background-image: url('https://freelance-app-static-files.s3.us-east-1.amazonaws.com/images/bg_lion_full.jpg');
    background-color: #333;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    padding: 100px 0px 30px 0px; /* padding: arriba derecha abajo izquierda */
}

.left-content, .right-content {
    width: 35%;
}

.left-content {
    padding: 50px;
    color: #fff;
}

.left-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #ffffff;
}

.left-content h1 .highlight {
    color: #00bfa6; /* Cambia este color según tu preferencia */
}

.left-content p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.left-content p .highlight {
    color: #00bfa6; /* Cambia este color según tu preferencia */
}

.left-content hr {
    border: 5px; /* Quita el borde predeterminado */
    height: 3px; /* Define el grosor de la línea */
    background-color: #00a58e;
     color:#00a58e; /* Cambia el color */
    margin: 10px 0; /* Opcional: Espacio alrededor del hr */
}

.right-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-content form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.right-content input[type="email"] {
    padding: 5px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 30px; /* Redondeo */
    width: 100%; /* Reduce el ancho */
    color: #333;
    font-size: 1rem;
    text-align: center;
    outline: none;
}

/* Personaliza el color del placeholder */
.right-content input[type="email"]::placeholder {
    color: #D7D7D7;
    opacity: 1;
}

#login-buttom{
    max-width: 200px !important;

}

.small-button {
    padding: 5px 30px 5px 30px; /* padding: arriba derecha abajo izquierda */
    margin: 10px auto 0;
    border: none;
    border-radius: 30px;
    background-color: #04B0A3;
    color: #fff;
    font-size: 0.9rem; /* Tamaño de fuente más pequeño */
    cursor: pointer;
    text-transform: uppercase;
    width: auto;
    max-width: 150px;
    display: block;
}

.small-button:hover {
    background-color: #02776E;
    color: #fff;
}


