@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --font-root:'Montserrat', sans-serif;
    --color--root:#5c7ae2;
}

.wrapper-login{
    background-image: url(../image/bg-login.png);
    width: 100%;
    height: 100vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-login{
    width: 550px;
    height: 350px;
    background-image: url(../image/form-login.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.logo-heading__form{
    margin: auto;
    height: 30%;
    position: relative;
    width: 100%;
}
.logo-heading__form .link__logo{
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
}
.logo-heading__form .link__logo .logo-img{
    width: 180px;
    height: 120px;
}
.content__form{
    height: 70%;
    padding: 5px 10%;
    font-family: var(--font-root);
}
.field-content__form{
    position: relative;
    margin-bottom: 1rem;
}
.field-content__form label{
    font-size: 20px;
    color: var(--color-root);
    color: var(--color--root);
    position: absolute;
    font-weight: bold;
    top: 7px;
}
.field-content__form .form-border-none {
    color: #000;
    border: 0;
    background: transparent;
    font-size: 20px;
    padding: 0 0 0 30%;
    border-bottom: 2px solid var(--color--root);
    border-radius: 0;
}
.form-border-none.form-control:focus {
    color: #495057;
    background-color: transparent;
    box-shadow: none;
}
.btn--primary{
    background: var(--color--root);
    color: #edf3f9;
    width: 70%;
    margin: auto;
    font-size: 20px;
    font-family: var(--font-root);
    font-weight: bold;
    border-radius: 50px;
    margin-top: 2rem;
    margin-bottom: 0;
}
.btn--primary:hover{
    color: var(--color--root);
    background: #edf3f9;
    border: 1px solid var(--color--root);
}