:root {
    --fontSize: 13px;
    --backgroundColor: #2C3338;
    --backgroundImage: url("../images/login_bg.jpg");
    --backgroundContainerColor: #505083bf;
    --buttonColor: #FF05A4;
    --fontColor: #FFFFFF;
    --fontFamily: "Quicksand";
    --bodyFontSize: 0.875rem;
    --bodyFontWeight: 400;
    --bodyLineHeight: 1.5;
    --colorIcon: #FBFBFB95;
}

body{
    margin: 0;
    padding: 0;
    width: 100%; height: 100%;
    font-family: var(--fontFamily);
    color: var(--fontColor);
    background-color: var(--backgroundColor);
    background-image: var(--backgroundImage);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

table{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    font-family: var(--fontFamily);
    color: var(--fontColor);
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.main-container{
    width: 100%;
    max-width: 950px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--backgroundContainerColor);
    box-shadow: 0px 8px 26px -8px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 8px 26px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 8px 26px -8px rgba(0,0,0,0.75);
}

.content-container{
    /*background: green;*/
}

.info-container{
    height: 500px;
    /*border-left: 1px solid var(--borderContainerColor);*/
    box-shadow: -2px -2px 14px -8px rgba(0,0,0,0.46);
    -webkit-box-shadow: -2px -2px 14px -8px rgba(0,0,0,0.46);
    -moz-box-shadow: -2px -2px 14px -8px rgba(0,0,0,0.46);
}

.info-box{
    background-image: url("../images/login_image.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.formfield {
    margin: 15px 0;
    display: flex;
    border: 1px solid #69648D;
    border-radius: 0px;
}

.formfield .icon {
    block-size: 16px;
    inline-size: 16px;
    display: inline-block;
    fill: #ffffff;
    vertical-align: middle;
}

.formfield input{
    width: 100%;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    font-size: 13px;
    margin: 0;
    outline: 0;
    padding: 0 10px;
}

.formfield label{
    border-radius: 0px;
    padding: 10px;
    background: #69648D;
}

.formfield input:focus,.formfield input:hover{
    background: #79769633;
}

input.button{width: 100%;}

.button{
    background: var(--buttonColor);
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    display: block;
}

a{ color: #8adcff; outline: 0; font-size: 12px; font-weight: 400; text-decoration: none;}

.icon-page{font-size: 62px; color: var(--colorIcon)}

label {
    margin-bottom: 0;
}

input[type="text"], input[type="email"], input[type="password"] {
    border-radius: 0px;
}


