@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --redPrimary:#F44336;
    --greenStatus:#C1FFC9;
    --greenStatusText:#066042;
    --redStatus:#FFC6C6;
    --redStatusText:#981B25DB;
    --yellowStatus:#FFE591;
    --yellowStatusText:#9F6F00;
    --blueButtonPrimary:#91C8FF;
    --blueButtonSecondary:#3CA0EC;
    --blueButtonTerciary:#00459F;
    --orangeButtonPrimary:#FFB444;
    --orangeButtonSecondary:#F4970B;
    --orangeButtonTerciary:#CB7B04;
    --grayLight:#E1E1E1;
    --grayMedium:#BDBCBC;
    --grayDark:#808080;
    --borderInput:#D9D9D9;
    --black:#121620;
    --white:#FFFFFF;
    --label:#9A9A9A;
    --roboto:"Roboto", sans-serif;
}

.container{
    height: 100vh;
    margin-right: 0;
    padding-right: 0;
}

.container .row, .col-md-6{
    padding-right: 0;
    margin-right: 0;
}
body{
    font-family: var(--roboto);
}

img.logo{
    width: 150px;
    object-fit: cover;
}

.title{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -2px;
}

img.img-login{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.form{
    width: 60%;
    
}

.form-container{
    display: flex;
    align-items: center;
}

.btn{
    padding: 1rem 0.5rem;
    font-size: 18px;
    font-family: var(--roboto);
    line-height: 20px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: 0.3s all ease-in-out;
}

.btn-primary{
    background: var(--orangeButtonSecondary);
    border: none;
}

.btn-primary:hover{
    background: var(--orangeButtonTerciary);
}
.btn-secondary{
    background: var(--black);
    border: none;
}

.btn-secondary:hover{
    background:#000;
}

.form-group{
    position: relative;
}
.form-group label{
    position: absolute;
    top: -10px;
    left: 15px;
    z-index: 10;
    font-weight: 500;
    font-size: 14px;
    color: var(--label);
    background: var(--white);
    padding-inline: 5px;
    border-radius: 7px;
}

.form-group input{
    border-radius: 10px;
    padding: 1rem;
    border: 1.5px solid var(--borderInput);
    font-size: 18px;
    font-weight: 400;

}

.input-group-text{
    background: transparent;
    border-left: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--label);
}

.input-group input{
    border-right: 0;

}

.form-check-label{
    font-size: 16px;
    font-weight: 500;

}

.form-control:focus{
    border: 1.5px solid var(--orangeButtonSecondary);
    box-shadow: none;
}