@import url("../variables.css");
body {
    font-size: 100%;
    background-color: #fff;
}

img {
    float: left;
    width: 100%;
}

svg {
    float: left;
    width: 100%;
    height: 100%;
}

#root {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr auto;
}

#root main {
    display: grid;
}


/**/

.target-box {
    padding: 20px;
    background-color: #fff;
    border: solid 2px #ddd;
    border-radius: 25px;
}

@media screen and (min-width: 280px) {
    .target-box {
        padding: 15px;
    }
}

@media screen and (min-width: 280px) {
    .target-box {
        padding: 20px;
    }
}


/**/

#ct-login {
    grid-row-gap: 30px;
}

.head-ct-login {
    grid-column: 1 / 13;
    justify-content: center;
    grid-template-rows: 30px max-content 1fr;
    display: grid;
}

.title-login {
    font-weight: bold;
    color: #636161;
    text-shadow: 0px 3px 2px #cacaca;
    letter-spacing: .0px;
    text-align: center;
    grid-row: 2 / 3;
    s
}

@media (min-width: 280px) {
    .title-login {
        font-size: 20px;
        margin: 0 0 15px;
    }
}

@media (min-width: 720px) {
    .title-login {
        font-size: 25px;
        margin: 0 0 20px;
    }
}

@media (min-width: 1024px) {
    .title-login {
        font-size: 30px;
        margin: 0 0 30px;
    }
}

.box-logo-cnti {
    justify-self: center;
    position: relative;
    display: block;
    text-align: center;
    grid-row: 3 / 4;
}

@media (min-width: 280px) {
    .box-logo-cnti {
        width: 250px;
    }
}

@media (min-width: 720px) {
    .box-logo-cnti {
        width: 300px;
    }
}

@media (min-width: 1024px) {
    .box-logo-cnti {
        width: 330px;
    }
}

.title-ingresar {
    font-size: 18px;
    color: var(--colorPrimary)/*#1d2231*/
    ;
    font-weight: bold;
    opacity: .8;
}

.box-login {
    align-self: start;
}

@media (min-width: 280px) {
    .box-login {
        grid-column: 1 / 13;
    }
}

@media (min-width: 720px) {
    .box-login {
        grid-column: 4 / 10;
    }
}

@media (min-width: 1024px) {
    .box-login {
        grid-column: 5 / 9;
    }
}


/**/

.form-group-login {
    position: relative;
    margin: 0 0 20px;
}

.form-group-login label {
    display: block;
    color: #555;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.29px;
}

.form-group-login input[type="text"],
.form-group-login input[type="password"],
select,
textarea {
    width: 100%;
    min-width: ;
    box-sizing: border-box;
    padding: 10px 0;
    border: none;
    border-bottom: solid 1px #ddd;
    border-radius: 3px;
    color: #333;
    background-color: #eaeaea;
}

.btn-btn-login {
    display: inline-block;
    padding: 5px 30px;
    border: solid 2px var(--colorPrimary);
    background: var(--colorPrimary);
    border-radius: 30px;
    color: #fff;
    transition: 300ms ease;
    cursor: pointer;
    font-weight: normal;
    outline: none;
}

.btn-btn-login:hover {
    background: transparent;
    color: var(--colorPrimary);
    padding: 5px 30px;
}