@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");

/* ---------- Global ------------- */
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    background: url("../img/background.jpg");
    height: 100%;
    text-align: center;
}

.container-fluid {
    height: 100%;
}

/* ----------- Login --------- */
.login_title {
    font-family: 'Kaushan Script', cursive;
    font-size:50px;
    text-align:center;
    line-height:60px;    
}

.login_form {
    background: rgba(255,255,255,0.8);
    margin-top: 40px;
    display: inline-block;
}

.alert_box {
    margin: auto;
}

.login_group_controls {
    margin-top: 20px;
    margin-bottom: 10px;
}

.login_label {
    text-align: left;
}

.login_forgot_password {
    color: black;
    font-size: small;
}

.btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    
    border-radius: 3px 0 0 3px;
}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

.page_title {
    font-family: 'Kaushan Script', cursive;
    font-size:40px;
    text-align:center;
    line-height:60px; 
    padding-bottom: 5px;
}

.page_panel {
    background: rgba(255,255,255,0.8);
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

#txtUser {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

#txtPassword {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;    
}

/* ---------  Media Breakpoints -------- */
@media(min-width:1200px) {
    .login_form, .alert_box {
        width: 35%;
    }   
    
    .login_group_controls {
        margin-left: 50px;
        margin-right: 50px;
    }    
}

@media(min-width:992px) and (max-width:1199px) {
    .login_form, .alert_box  {
        width: 55%;
    }
    
    .login_group_controls {
        margin-left: 50px;
        margin-right: 50px;
    }        
}

@media(min-width:768px) and (max-width:991px) {
    .login_form, .alert_box  {
        width: 75%;
    }  

    .login_group_controls {
        margin-left: 50px;
        margin-right: 50px;
    }        
}

@media(max-width:767px) {
    .login_form, .alert_box  {
        width: 95%;
    }   
    
    .login_group_controls {
        margin-left: 10px;
        margin-right: 10px;
    }        
}