@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --title-bg: #34649b;
    --button-bg: #34649b;
}

body {
    height: 100vh;
    background-image: url(../imagenes/f1.jpg); /*FONDO*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

}

.login-container {
    height: 25.75em;
    width: 50em;
    margin: 7em auto;
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    justify-content: center;
}

.login-info-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0.5rem;
    background: rgba(255, 255, 255, 0.708);
}

.title {
    text-transform: capitalize;
    font-size: 3.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--title-bg);
}

.inputs-container {
    height: 55%;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    
}

.input, .btn {
    width: 90%;
    height: 3.125rem;
    font-size: 1em;
}

.input {
    padding-left: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.input:hover {
    border: 2px solid var(--button-bg);
}

.btn {
    width: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: var(--button-bg);
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .login-container {
        width: 50%;
        margin-top: 3rem;
    }
    .login-info-container {
        width: 100%;
        border-radius: 5px;
    } 
}

@media screen and (max-width: 650px) {
    .login-container {
        width: 60%;
    }
}

@media screen and (max-width: 500px) {
    .login-container {
        height: 55%;
    }


    .login-info-container > p {
        margin: 0;
    }
}
