/**
 *   @Document   : login.css
 *   @Created on :
 *   @Author     : Virginio Laurini @ Pingitore Informatica
 *   @Description:
 *
 */

body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: whitesmoke;

    min-height: 100vh;

    background-image: url("/img/Banner_2.1.png");
    background-size: cover;
    background-position: center;
}

label {
    margin: 0;
    width: 80%;
}

.show_pwd {
    position: relative;
    top: 15px;
    left: -20px;
}


#container {
    margin: 15px;
}

/**
* Header
*/
#header {
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    right: 200px;
    width: 100%;
    height: 152px;
    background-color: whitesmoke;
}

#container_logo_header {
}

#logo_header {
    height: 150px;
}

#banner-box {
    background-image: url("/img/Banner_2.1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
}

#xmanage-login_background {
    background-image: url("/img/Banner_2.1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 1000px;
}

/**
* Label
*/
#labels {
    display: grid;
    grid-template-columns: auto auto;
    padding: 10px;
    grid-row-start: 2;
}

.main_containers_label {
    padding-left: 10%;
    padding-top: 3%;
}

.title_label {
    color: #af2027;
    font-weight: bold;
}

.sublabel {
    color: black;
}

#logo_label_container {
    padding-left: 80%;
}

#logo_label {
    width: 80%;
    height: 20%;
}


/**
* Footer
*/

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;

}

#copyright {
    color: #af2027;
    font-size: 10pt;
    font-family: Calibri, sans-serif;
    font-weight: bold;
    /*    margin-left: 45%; */
}


/**
 * Box di login
 */
.box-get-login {
    position: fixed;
    top: 10px;
    right: 30px;
    text-align: center;
    width: 450px;

}

.box-manage-login {
    position: absolute;
    top: 200px;
    left: 30%;
    text-align: center;
    width: 350px;
}

.form-login {
    padding: 5px 5px 5px;
    margin: 0 auto;
    border: 2px solid rgba(1, 2, 3, 0.1);
    text-align: center;
    color: #af2027;
}

.form-login:hover {
    border: 2px solid #af2027;
    border-radius: 6px;
}

.form-login-heading {
    text-align: center;
    margin-bottom: 20px;
}

.form-control {
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 4px;
}

.form-contrl input[type="email"] {
    margin-bottom: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

input[type="password"] {
    margin-top: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 5px;
}

.color-btn {
    width: 80%;
    height: 100%;
    display: inline-block;
    margin-top: 5px;
    padding: 5px;
    border-top: 0;
    border-radius: 5px;
    vertical-align: center;
}

.color-btn-login, .color-btn-send-request {
    background-color: #af2027;
    color: white;
}

.color-btn-login:hover, .color-btn-send-request:hover {
    background-color: white;
    color: #af2027;
    border: 1px solid #af2027;
}


.color-btn-back-to-login,
.color-btn-req {
    border: 2px solid rgb(0, 110, 255);
    background: whitesmoke;
}

.color-btn-back-to-login:hover,
.color-btn-req:hover {
    background-color: white;
    color: rgb(0, 110, 255);
}