﻿
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    /*  font-weight: <weight>;*/
    font-style: normal;
    font-variation-settings: "wdth" 100;
}


.loginBody {
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loginMain {
    width: 380px;
    height: 544px;
    background: #ffffff !important;
    overflow: hidden;
    border-radius: 10px;
    /*box-shadow: 5px 20px 50px #001;*/
}

#chk {
    display: none;
}



.Loginlabel {
    top: 15%;
    position: relative;
    color: #fe8662;
    /*   font-size: 2.3em; */
    justify-content: center;
    display: flex;
    margin: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.Logininput {
    width: 85%;
    height: 45px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 10px auto;
    /* padding: 12px; */
    padding-left: 6px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.LoginBtn {
    width: 60%;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    /*   background: #573b8a; */
    background: #041466;
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

button:hover {
    background: #fe8662;
}

.login {
    height: 460px;
    background: #eee;
    border-radius: 60% / 10%;
    transform: translateY(-180px);
    transition: .8s ease-in-out;
    transform: translateY(95px);
}

    .login label {
        color: #573b8a;
        transform: scale(.6);
    }

#chk:checked ~ .login {
}

.Logininput::placeholder {
    text-align: left;
    color: #999;
    padding-left: 3px;
}

.Logininput::text {
    padding-left: 13px;
}

.loginBody {
    background-color: cornflowerblue;
    background-size: cover; /* or contain */
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Adjust as needed */
}

.login:hover {
    transform: translateY(65px);
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 13px;
    margin-top: 25px;
    gap: 5px;
}

    .copyright a {
        color: #337ab7;
    }

        .copyright a:hover {
            color: darkred;
        }

