﻿* {
    box-sizing: border-box;
}

html,
body {
    height: auto;
    margin: 0%;
    padding: 0;
    font-family: 'Karla', sans-serif !important;
    background: #FFC575;
    background-image: url('../Images/sso_bg.png');
    background-repeat: no-repeat;
    background-size: auto; /* Cover the entire background */
    background-position: center; /* Center the image */
}

.full-container {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 100% 100%;
    position: relative;
    overflow: visible;
}

.top-logo {
    width: 50%;
    margin: auto;
}

.top-logo-img1 {
    width: 85px;
    height: 70px;
    margin-right: 2%;
    margin-top: 10%;
}

.top-logo-img2 {
    width: 140px;
    height: 50px;
    margin-left: 2%;
    margin-top: 10%;
}

.top-logo p {
    text-align: center;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2%;
}

.header-login {
    width: 60vh;
    padding: 2%;
    background-color: rgba(255, 255, 255, 0.65);
    border: 0.5px solid #ADADAD;
    border-radius: 0.8em;
    margin: 0px 5%;
    /*filter: blur(8px);
  //-webkit-filter: blur(8px);*/
}

.ic-container {
    background-color: white;
    border-radius: 0.8em;
    width: 100%;
    margin: auto;
    padding: 5px 3px;
    margin-bottom: 1%;
    border: 0.5px solid #ADADAD;
}

    .ic-container select,
    .ic-container input[type="number"],
    .ic-container input[type="text"] {
        width: 85%;
        font-size: 16px;
        border: none;
        border-radius: .8em;
        padding: 8px;
        margin-left: 5px;
        font-family: "Karla", sans-serif;
    }

    .ic-container input[type="password"] {
        width: 85%;
        font-size: 16px;
        border: none;
        padding: 8px;
        margin-left: 2px;
        margin-right: 2px;
        font-family: "Karla", sans-serif;
    }

    .ic-container p {
        color: white;
        font-size: 15px;
        padding: 1%;
        margin: 0;
    }

.login-button {
    width: 95%;
    margin-left: 3%;
    margin-top: 3%;
    background-color: rgb(0, 0, 148);
    border-radius: 0.8em;
    font-size: 13px;
    border: none;
    padding: 10px 0px;
    font-family: "Karla", sans-serif;
    color: white;
    font-weight: bold;
    box-shadow: rgb(53, 53, 53) 1px 2px 6px;
}

@media only screen and (max-width: 950px) {
    /* CSS rules for screens with a width of 850px or less */
    .header-login {
        width: 100% !important;
        padding: 4%;
    }
}


@media only screen and (max-height: 550px) {
    .header-login {
        width: 100% !important;
        width: 50%;
    }

    .login-container {
        height: fit-content;
    }
}
