

*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}





@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
    /* box-sizing: border-box; */
    /* margin: 0;
    padding: 0; */
    font-family: Raleway, sans-serif;
}




body {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: "Open Sans";
}

.container {
    position: relative;
    min-height: 100vh;
    max-width: 100% !important;
    background-color: #0A0D14;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #0A0D14;
    /* transform: scale(0.5) translate(-100%, -100%); */
    /* transform: translateX(4em); */
    /* transform: scale(2, 0.5); */

    animation: move-up6 2s ease-in infinite alternate-reverse;

}

.container::after {
    content: "";
    position: absolute;
    vertical-align: bottom;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: blue;

    animation: move-up6 2s ease-in infinite alternate-reverse;
}

@keyframes move-up6 {
    to {
        transform: translateY(-50px);

    }
}

a {
    text-decoration: none;
}

.login {
    position: relative;
    /* width: 350px; */
    padding: 25px;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    z-index: 10;
    backdrop-filter: blur(25px);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2),
        -10px -10px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width:400px) {
    .login {
        width: 90%;
    }
}

.login h1 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 0;
    text-align: center;
}

img{
    z-index:50!important;
}

/* .login form {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
} */

/* .login form .input-box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: flex;
}

.login form .input-box input {
    width: 100%;
    border: none;
    padding: 1rem 2.7rem 1rem 1rem;
    border-radius: 10px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
} */

/* .login form .input-box input::placeholder {
    color: #fff;
    font-size: 0.8rem;
    transition: 0.5s ease;
}

.login form .input-box input:focus::placeholder {
    opacity: 0;
}

.login form .input-box input:focus {
    outline: none;
} */

/* .login form .input-box i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.2rem;
}

.login form .rembar {
    margin-bottom: 30px;
    width: 100%;
} */

/* .login form .rembar input {
    appearance: none;
}

.login form .rembar label {
    color: #fff;
    position: relative;
    width: 100%;
    padding-left: 35px;
    font-size: 0.9rem;
}

.login form .rembar label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.login form .rembar label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.5 ease;
    opacity: 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.login form .rembar input:checked+label::after {
    opacity: 1;
} */

/* .login form button {
    width: 100%;
    border: none;
    padding: 1rem 1rem 1rem 2.7rem;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 10px;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.5s ease;
    cursor: pointer;
    font-weight: 600;
} */

/* .login form button:hover {
    background-color: black;
}

.login form .links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.login form .links a {
    color: #fff;
    font-weight: 100;
    font-size: 0.7rem;
} */




















/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    align-items: center;
    justify-content: center;
}


/* Loader */
.loader {
    border: 5px solid black;
    /* Light grey */
    border-top: 5px solid #00b4fa;
    /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}