﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url(../images/rasmus-landgreen.jpg), linear-gradient(90deg, rgba(255, 235, 59, 1) 0%, rgba(255, 149, 76, 1) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-origin: border-box;
    font-family: 'Montserrat', sans-serif;
    -webkit-background-blend-mode: multiply;
    -ms-background-blend-mode: multiply;
    background-blend-mode: multiply;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

sup, ul {
    color: red
}

ul {
    list-style-type: none;
    text-align: center;
    margin-bottom: 5px;
}

header {
    padding: 15px;
    display: flex;
    width: 100%;
    min-height: 120px;
    position: fixed;
}

    header .imageStyle {
        background: url(../images/emblem.png);
        background-repeat: no-repeat;
        background-size: contain;
        /* background-position-x: 20px; */
        /* background-position-y: 12px; */
        width: 4.2em;
    }

    /* header img {
    width: 4.2em;
    margin-right: 10px;
} */

    header .header_title {
        font-weight: 600;
        font-size: 1.3rem;
        /* margin-top: 5px; */
        margin-left: 5px;
    }

        header .header_title span {
            display: block;
        }

            header .header_title span:last-child {
                margin-top: 8px;
            }

main {
    min-height: calc(100vh - 120px);
    padding: 0 10px;
    margin-top: 120px;
}

    main .loginSection {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 4em 0;
    }

        main .loginSection .loginBox {
            padding: 10px;
            background: #f8f8f8;
            border-radius: 5px;
            max-width: 28em;
            width: 28em;
            /* margin-top: 6em; */
            height: auto;
            animation: reveal 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            /* animation-delay: 1s; */
            /* ff 3.6+ */
            background: -moz-linear-gradient(180deg, rgba(76, 175, 80, 0.79) 0%, rgba(255, 235, 59, 0.88) 100%);
            /* safari 5.1+,chrome 10+ */
            background: -webkit-linear-gradient(180deg, rgba(76, 175, 80, 0.79) 0%, rgba(255, 235, 59, 0.88) 100%);
            /* opera 11.10+ */
            background: -o-linear-gradient(180deg, rgba(76, 175, 80, 0.79) 0%, rgba(255, 235, 59, 0.88) 100%);
            /* ie 6-9 */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFEB3B', endColorstr='#4CAF50', GradientType=1 );
            /* ie 10+ */
            background: -ms-linear-gradient(180deg, rgba(76, 175, 80, 0.79) 0%, rgba(255, 235, 59, 0.88) 100%);
            /* global 94%+ browsers support */
            background: linear-gradient(180deg, rgba(76, 175, 80, 0.79) 0%, rgba(255, 235, 59, 0.88) 100%);
            /* background: #f2f2f2; */
            box-shadow: 0px 6px 20px rgb(0 0 0 / 50%), 0px 6px 20px rgb(0 0 0 / 50%);
        }

@keyframes reveal {
    0% {
        transform: scale(0);
        transform-origin: center center;
    }

    100% {
        transform: scale(1);
        transform-origin: center center;
    }
}

main .loginSection .loginBox .note {
    margin: 0 15px;
}

    main .loginSection .loginBox .note p {
        font-size: 0.7rem;
        font-weight: 600;
    }

main .loginSection .logo {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    /* transition: all 0.5s ease-out infinite; */
    animation: logo_ani 1s infinite alternate;
}

@keyframes logo_ani {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

main .loginSection .logo img {
    width: 64px;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

main .loginSection form {
    margin: 15px 15px;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 15px;
    transform: scale(1);
    opacity: 0.85;
    box-shadow: inset 0px 0px 5px rgb(0 0 0 / 80%);
    overflow: hidden;
}

    main .loginSection form .form-gp {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

        main .loginSection form .form-gp label {
            margin-bottom: 5px;
            margin-left: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: #363636;
        }

        main .loginSection form .form-gp input {
            padding: 10px 15px;
            border: none;
            outline: none;
            border-radius: 35px;
            background: none;
            box-shadow: inset 0px -1px 5px rgb(0 0 0 / 30%), inset 0px 1px 5px rgb(183 171 171 / 30%);
        }

            main .loginSection form .form-gp input:focus {
                border: none
            }

        main .loginSection form .form-gp .button {
            padding: 10px;
            border: none;
            outline: none;
            border-radius: 35px;
            background: linear-gradient(90deg, rgba(255, 235, 59, 1) 0%, rgba(255, 149, 76, 1) 100%);
            box-shadow: -1px -1px 5px rgb(0 0 0 / 50%), 1px 1px 5px rgb(255 255 255 / 21%);
            width: 50%;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Montserrat',sans-serif;
            letter-spacing: 0.05em;
            font-size: 0.85rem;
            margin: 0 auto;
        }

            main .loginSection form .form-gp .button:focus, main .loginSection form .form-gp .button:active {
                transform: scale(0.95);
                box-shadow: inset 0px 1px 5px rgb(183 171 171 / 30%), inset 0px -1px 5px rgb(0 0 0 / 30%);
                background: linear-gradient(90deg, rgba(255, 149, 76, 1) 0%, rgba(255, 235, 59, 1) 100%);
                transition: all 50ms ease-in-out;
            }

@media only screen and (min-width:320px) and (max-width:575px) {
    header {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        header .imageStyle {
            background: url(../images/emblem.png);
            background-repeat: no-repeat;
            background-size: contain;
            /* background-position-x: center ; */
            /* background-position-y: 12px; */
            width: 4.2em;
            height: 5.2em;
        }

        header .header_title {
            font-size: 1rem;
            text-align: center;
            margin-top: 10px;
        }

            header .header_title span:last-child {
                margin-top: 1px;
            }

    main {
        min-height: calc(100vh - 181.19px) !important;
        padding: 0 10px;
        margin-top: 181.19px;
    }

        main .loginSection {
            margin: 2em 0;
        }

            main .loginSection form {
                margin: 12px 5px;
            }

            main .loginSection .loginBox {
                padding: 3px 3px 5px 3px;
            }
                /* .login_for h5{
        font-size: 0.71rem ;
        padding: 0 1px ;
    } */
                main .loginSection .loginBox .note p {
                    font-size: 0.6rem;
                    font-weight: 500;
                }
}
