﻿@import url(./variable.css);

.wrapper {
    background-color: #eaf3ff;
    height: 100vh;
    display: flex;
    align-items: center;
}




.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
    z-index: 3;
}



@media only screen and(max-width:769px) {

    .container::after {
        display: none;
    }

    .wrapper {
        background-color: #68e5f5;
    }
}

@media only screen and (max-width: 769px) {
    .container::after {
        display: none;
    }

    .circle1,
    .circle2,
    .circle3 {
        display: none;
    }
}

.login-title {
    font-size: 1.5rem;
}

.new-user {
    background-color: #eaf3ff;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .new-user a {
        color: white;
        background-color: #a8aaaf;
        padding: 10px;
        margin: 10px;
        border-radius: 10px;
    }

.username,
.password {
    width: 100%;
    border: 1px solid rgb(185, 185, 185);
    display: flex;
    justify-content: space-between;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
}

    .username input,
    .password input {
        width: 100%;
        border: none;
        border-radius: 3px;
    }

    .username svg,
    .password svg {
        color: #cccccc;
    }

input:focus {
    outline: none;
}

.login-btn {
    width: 100%;
    border: none;
    background-color: var(--primaryColor);
    padding: 10px;
    border-radius: 10px;
    color: white;
}

    .login-btn a {
        color: white;
    }

.password-setting {
    width: 100%;
}

.forgot-password {
    margin-top: 10px;
}

    .forgot-password a {
        color: rgb(97, 97, 97);
    }

.remember-password span {
    color: rgb(97, 97, 97);
}

.return a {
    color: black;
}
