main {
    background: url(../Assets/LoginBackground.png);
    background-size: cover;
    height: 100vh;
    overflow-y: hidden;
}

.mainSign {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mainLog {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15%;
}

.login-containerA {
    display: flex;
    flex-direction: column;
    margin-right: 15%;
    margin-left: 3%;
    gap: 0.5rem;
}

.login-containerB {
    display: flex;
    flex-direction: column;
    margin-left: 3%;
    gap: 0.5rem;


}


.form-box {
    width: 28vw;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    opacity: 0;


}

.form-box.active {
    z-index: 1;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}


p {
    color: white;
    font-size: 1.4vw;

}

h1 {
    color: white;
    font-size: 2.5vw;
}

.small {
    color: white;
    font-size: 1vw;

}

label {
    color: white;
}

button {
    width: 10vw;
    height: 5vh;
    margin: 5%;
    font-size: 1.5vw;
    border-radius: 25px;
    background-color: #FE9B02;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

input {
    width: 15vw;
    height: 5vh;
    border: none;
    margin: 5%;
    background: none;
    color: white;
    border-bottom: white solid 3px;

}

.input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.orange {
    color: #FE9B02;
    text-decoration: none;
}

::placeholder {
    color: white;
    font-size: 1vw;
}

.signimg {
    position: absolute;
    top: 15%;
    left: 5%;
}

.logimg {
    position: absolute;
    top: 15%;
    left: 55%;
}


.pizza_container {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 33vw;
    height: 33vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 1s ease-out;
}

.pizza_container.active {
    left: 30%;
}

.pizza_container img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    /*transition: opacity 0.5s ease;*/
}

.pizza_container img.active {
    opacity: 1;
}

.pizza_container img.rotate {
    animation: rotate 1.5s ease-out;
}

.pizza_container img.rotate-left {
    animation: rotate-left 1.5s ease-out;
}

.pizza_container img.rotate-right {
    animation: rotate-right 1.5s ease-out;
}

@keyframes rotate-right {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotate-left {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {

    input {
        width: 100%;

    }


    /* .login-containerA, .login-containerB {
        margin-right: 0;
        margin-left: 0;
    } */
    .form-box {
        position: absolute;
        width: 80vw;
        height: auto;
        margin: 5%;
        padding: 1rem;
    }

    .pizza_container {
        display: none;
    }

    p {
        font-size: 1rem;

    }

    h1 {
        font-size: 2rem;
    }
}