﻿body {
    box-sizing: border-box;
    background-color: #f8f9fc;
    color: #20123b;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}

 img {
}
 .img-wrapper {
    display: flex;
    justify-content: center !important;
    align-self: center;
    margin-bottom: 54px;
}
#login-wrapper h1 {
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    /*font-weight:bold;*/
}


#login-wrapper .floating-label input {
    font-size: 13px;
    padding-left: 8px;
    /*padding: 20px 0px;*/
    height: 50px !important;
    width: 100%;
    border: 1px solid #DCDEE0;
    border-radius: 4px;
    background: #fff;
    /*min-width: 280px;*/
    /*box-sizing: border-box;*/
    transition: all .3s linear;
    color: #000;
    /*font-weight: 300;*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

#login-wrapper .under-h1 {
    font-size: 15px;
    line-height: 22px;
    margin-top: -12px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
    font-weight: bold;
}

#login-wrapper .floating-label label {
    font-size: 12.5px;
    color: #000;
    opacity: .4;
    font-weight: 400;
}
#login-wrapper button {
    background-color: #0060df;
    width: 100%;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 200;
    height: 48px;
    padding: 0 8px;
    margin-top: 10px;
}

.login-container {
    display: grid;
    grid-template-rows: 200px 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    padding-top: 50px;
}

 .login-wrapper {
    /*grid-row:2;
    grid-column:2;*/
    /*display: grid;*/

    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 12px 18px 2px rgba(34,0,51,.04), 0 6px 22px 4px rgba(7,48,114,.12), 0 6px 10px -4px rgba(14,13,26,.12);
    padding: 11px 40px 20px 40px;
    width: 350px;
    border-radius: 8px;
}





#login-wrapper .floating-label-select {
    position: relative;
    margin-bottom: 10px;
}

   #login-wrapper .floating-label-select label {
        position: absolute;
        top: calc(50% - 14px);
        left: 0;
        opacity: 0;
        transition: all .3s ease;
        color: rgb(17, 75, 148);
        padding-left: 8px;
    }




#login-wrapper input:focus {
    border: solid 1px #008CBA;
    outline: 0;
    box-shadow: 0 2px 6px -8px #008CBA;
    background-color: white;
}





#login-wrapper .floating-label {
    position: relative;
    margin-bottom: 10px;
}

    #login-wrapper .floating-label label {
        position: absolute;
        top: calc(50% - 14px);
        left: 0;
        opacity: 0;
        transition: all .3s ease;
        /*color: rgb(17, 75, 148) !important;*/
        color: #114b94;
        padding-left: 8px;
    }



    /*.floating-label input:not(:placeholder-shown) {
                padding: 28px 0px 12px 0px;
            }*/

    #login-wrapper .floating-label input:not(:placeholder-shown) + label {
        transform: translateY(-10px);
        opacity: .7;
    }