﻿form{
    padding:0;
    margin:0;
}

.login{
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:row;
    position:relative;
}

.section-login{
    width:60%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.section-login::before {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    content: '';
    left: 0;
    top: 0;
    background: linear-gradient(206.49deg, #FFFFFF 68.73%, rgba(255, 255, 255, 0.6) 102.1%);
}

.section-login img{
    object-fit:cover;
    object-position:left bottom;
    width:100%;
    height:100%;
}

.content-login {
    width: 75%;
    display: flex;
    flex-direction: column;
    padding: 5% 5% 6% 5%;
    background: #FFFFFF;
    border: 1px solid #E3E8EF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    position:absolute;
    z-index:1;
}

.content-login img{
    width:10rem;
    margin-bottom:3rem;
}

.text-login {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 133.52%;
    letter-spacing: -0.015em;
    color: #0A0A0A;
    margin-bottom:1.5rem;
}

.field {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 133.52%;
    letter-spacing: -0.015em;
    color: #757575;
    margin-bottom:1rem;
}

.field label{
    margin-bottom:0.7rem;
}

.form-control {
    padding: 0.8rem .75rem;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 133.52%;
    /* identical to box height, or 19px */

    letter-spacing: -0.015em;
    color: #757575;
}

button {
    width: 100%;
    margin-top: 1rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0069B4;
    --bs-btn-border-color: #0069B4;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0069B4;
    --bs-btn-disabled-border-color: #0069B4;
}

.btn {
    padding: 0.8rem .75rem;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 133.52%;
    /* identical to box height, or 24px */

    text-align: center;
    letter-spacing: -0.015em;
    color: #FFFFFF;
}

.section-welcome {
width: 40%;
height: 100%;
background: #0069B4;
}

.section-welcome img{
    object-fit:cover;
    width:100%;
    height:100%;
}

.welcome{
    width:43%;
    position:absolute;
    bottom:0;
    right:0;
    display:flex;
    flex-direction:column;
    justify-content:end;
    align-items:center;

}

.welcome img{
    width:100%;
}

.welcome div {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 133.52%;
    text-transform: capitalize;
    color: #FFFFFF;

    margin-bottom:2rem;
}

