@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-size: 16px;
    font-family: "Poppins", serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../images/1350899.jpg) no-repeat;
    background-position: top;
    background-size: cover;
}

.login {
    margin: 20px auto;
    padding: 20px 20px;
    border-radius: 25px;
    background-color: #fff;
    min-width: 22%;
}


    .login input, .login select {
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin: 10px 0;
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 2px;
    }

        .login input[type=text],
        .login input[type=password] {
            border: 1px solid #c0c0c0;
            transition: .2s;
        }

            .login input[type=text]:hover, .login select:hover {
                border-color: #F44336;
                outline: none;
                transition: all .2s ease-in-out;
            }

        .login input[type=submit] {
            border: none;
            background: #EF5350;
            color: white;
            font-weight: bold;
            transition: 0.2s;
            margin: 20px 0px;
        }

            .login input[type=submit]:hover {
                background: #F44336;
            }

    .login h2 {
        margin: 18px 13px 3px;
        color: #ff9900;
        font-size: 28px;
        text-shadow: 1px 0px 0px #a39f9f;
        text-align: left !important;
        !i;
        !;
    }

    .login p {
        margin-bottom: 20px;
    }

.links {
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #c0c0c0;
    margin-bottom: 10px;
}

    .links a {
        display: table-cell;
        padding-top: 10px;
    }

        .links a:first-child {
            text-align: left;
        }

        .links a:last-child {
            text-align: right;
        }

.login h2,
.login p,
.login a {
    text-align: center;
}

.login a {
    text-decoration: none;
    font-size: .8em;
}

    .login a:visited {
        color: inherit;
    }

    .login a:hover {
        text-decoration: underline;
    }

.login .input-group-text {
    display: none;
}

