﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url("../img/Login_Background.jpg");
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-wrapper {
    height: 100vh;
    width:100vw;
    display: flex;
    justify-content: center;
    align-items:center;
}

@media (max-width: 992px) {
    .login-wrapper {
        width: 80%;
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }

    .form {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 80px 70px 30px 70px;
    }

    .form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .login-wrapper {
        padding: 5px 1px 5px 1px;
    }
}
.form {
    position: relative;
    width:100%;
    max-width: 380px;
    padding: 70px 40px 40px;
    background:rgba(255,245,255,1);
    border-radius: 10px;
    color: rgba(0,0,0,0.8);
    box-shadow:0 15px 25px rgba(0,0,0,0.5);
}


.note {
    position: relative;
    width: 100%;
    max-width: 80vw;
    padding: 50px 40px 40px;
    background: rgba(255,245,255,1);
    border-radius: 10px;
    color: rgba(0,0,0,0.8);
    box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}
.fade-in {
    animation: fadeIn .8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.form img {
    position: absolute;
    top: -50px;
    left: calc(50% - 60px);
    width: 110px;
    background: rgb(255, 255, 255,1);
}

.form h2 {
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(0,0,0,0.8);
}

.form h6 {
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(0,0,0,0.6);
}

.form .input-group {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 15px;
}

.form .input-group input {
    border: none;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.05);
    height: 50px;
    border-radius: 10px;
    padding: 0 30px 0 68px;
    outline: none;
}

.symbol-input100 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    pointer-events: none;
    filter: invert(15%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

input:focus + .focus-input100 + .symbol-input100 {
    filter: invert(55%);
    transform: scale(1.1);
}



.submit-btn {
    display: block;
    margin-left: auto;
    border: none;
    outline: none;
    background: #2ec97e !important;
    color: #fff;
    transition: 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1e935a !important;
    color: #fff;
}


.forgot-pw {
    color: inherit;
}

#forgot-pw {
    position:absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -140px;
    left: 0;
    right: 0;
    height: 0;
    z-index: 1;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: 0.6s;
}

#forgot-pw:target {
    height: 121.5%;
    opacity: 1;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 0.5rem;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    color: inherit;

}