header{
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

.form-container{
    max-width: 550px;
    width: 100%;
    max-height: 400px;
    height: 100%;
    background-color: white;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}
.form-container .input-container{
    background-color: #e4e3e3;
    border-radius: 10px;
}
form input:focus,
form input:hover{
    outline: none;
    border: none;
}
.form-container .input-container input::placeholder{
    color: black;
}
.form-container button{
    background-color: var(--OrangeText);
    color: white;
    font-weight:bold;
    border-radius: 10px;
    padding: 5px 0  ;
    border: none;
    outline: none;
}
.form-container p{
    margin-top: 5px;
    font-size: .7rem;
    /* display: none; */
    opacity: 0;
    transition: .5s linear;

}





.circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(224, 224, 224, 0.233);
    border-radius: 50%;
    position: absolute;
    z-index:1;
}

.one {
    bottom: 0;
    animation: move1 70s linear infinite;
}

.tow {
    left: 50%;
    animation: move2 60s ease infinite;

}

.three {
    right: 0;
    bottom: 0;
    animation: move3 40s ease-in-out infinite;
}

@keyframes move1 {
    0% {
        left: 0;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 0;
    }
}

@keyframes move2 {
    0% {
    left: 50%;
    }

    50% {
        left: 0%;
    }

    100% {
    left: 50%;
    }
}

@keyframes move3 {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    100% {
        bottom: 0;
    }
}