@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: aliceblue;
}

.contentlogin {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
}

.section-login-space {
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.login-space-data {
    background-color: white;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-space-ilustration {
    position: relative;
    width: 65%;
}

.ilustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-content-ilustration {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px 100px;
}



.filter-content-ilustration h2 {
    color: rgb(243, 243, 243);
    font-weight: 400;
    font-family: 'Onest';
    opacity: 0.9;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.title-p-login {
    font-family: 'Onest';
    font-size: 2.2em;
    color: white;
    font-weight: 500;
    margin-top: 150px;
    opacity: 0.9;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.tools-login-item {
    width: auto;
    padding: 5px;
    gap: 10px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: #17171749;
}

.group-item {
    margin-bottom: 7px;
}

.tools-login-item img {
    width: 20px;
    height: 20px;
}

.tools-login-item p {
    font-family: 'Onest';
    font-size: 0.9em;
    color: white;
}







.formlogin {
    width: 90%;
    max-width: 400px;
    min-height: 200px;
    background-color: white;
    border-radius: 4px;
    padding: 20px 40px;
    box-shadow: 0px 0px 7px 2px rgba(0, 142, 213, 0);

}

.logo img {
    width: 70%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 70px;
    margin-top: 20px;
}

.inputWithImage {
    width: 100%;
    display: flex;
    align-items: center;
    border: solid 1px #17171733;
    border-radius: 4px;
}

.inputImage {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputImage img {
    width: 30px;
    height: 30px;
}

.inputInput {
    width: calc(100% - 40px);
}

.inputInput input {
    width: 100%;
    padding: 10px 5px;
    border: none;
    outline: none;
    color: #171717;
    font-family: 'Onest';
    font-size: 1em;
    border-radius: 5px;
}


.forgot {
    margin: 15px 0px;
    font-family: 'Onest', roboto;
    font-size: 0.9em;
}

.forgot a {
    text-decoration: none;
    color: rgb(0, 169, 239);
}

.create a {
    text-decoration: none;
    color: rgb(0, 169, 239);
}

.create a:hover {
    text-decoration: underline;
}

.create {
    font-size: 0.9em;
    margin-bottom: 15px;
    margin-top: 10px;
    font-family: 'Onest', roboto;
    color: #303030;
    text-align: center;
}

.contentlogin .default-btn {
    width: 100%;
}

.contentlogin .error-config {
    width: 100%;
    background-color: rgba(255, 0, 0, 0.204);
    border: none;
    border-radius: 2px;
}

/* MEDIA QUERYES */
@media (max-width: 600px) {
    .login-space-ilustration {
        display: none !important;
    }

    .login-space-data {
        width: 100%;
        background-image: url('../images/bg-mobile-login.jpg');
        background-clip: content-box;
        background-size: 200%;
    }
}