:root {
    --primary-color: #f05a1a;
    --box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.1);
    --background-color: #dddddd;
    --white: rgb(255, 255, 255);
    --black: #1a1a1a;
    --principal-font: "Raleway", Arial, sans-serif;
    accent-color: var(--primary-color);

    box-sizing: border-box;
}

body {
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loginBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f05a1a;
    width: 20%;
    height: auto;
    padding: 2em;
    border-radius: 15px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    font-size: bold;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.loginBox a {
    text-decoration: none;
    color: white;
}

.loginBox a:hover {
    opacity: 1;
    transition: 0.3s;
    color: #f05a1a;
    visibility: visible;
    transform: translateY(-3px);
}

label {
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5em;
}

.logoDesign {
    max-width: 50%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    display: flex;
    flex-direction: column;
    width: 18vw;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    /* Esto evita que los campos sobresalgan del contenedor */
}

/* MEDIAQUERYS */
@media screen and (max-width: 1000px) {
    .loginBox {
        width: 30%;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        width: 30vw;
        padding: 10px;
    }
    
    .logoDesign {
        max-width: 70%;
    }
}

@media screen and (max-width: 360px) {
    .loginBox {
        width: 60%;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        width: 60vw;
        padding: 10px;
    }
}



button {
    width: 10em;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    margin-top: 10px;
    border: solid 0.5px var(--white);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
 
button:hover {
    /* background-color: var(--black); */
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--white);
}

.fa, .fa-classic, .fa-sharp, .fas, .fa-solid, .far, .fa-regular, .fab, .fa-brands {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    color: #1af061;
    width: 5px;
}

#viewPassword {
    position: absolute;
    top: 54%;
    right: 43%;
    cursor: pointer;
    }

