#signInBox {
    width: 100%;
    margin: auto;
    border-radius: 5px;

}

#headerMainLogo {
    width: 100%;
    margin: auto;
    margin-top: 1%;
    margin-bottom: 1%;
}

#mainlogoImg {
    width: 100%;
}

#topbar {
    width: 100%;
    margin: auto;
    background-color: #4caf50;
    height: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

h2 {
    text-align: center;
}

#image {
    display: flex;
    width: 90%;
    margin: auto;
}

#image>div {
    width: 25%;
    border: 1px solid #c7c7c9;
    height: 40px;
}

img {
    width: 100%;
    height: 25px;
    padding-top: 8px;
}

#new {
    display: flex;
}

#new>div {
    width: 50%;
    text-align: center;

    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

.dot {
    width: 5%;
    margin: auto;
}

form {
    width: 100%;
}

input {
    border: none;
    width: 90%;
    margin: 5%;
    border-bottom: 1px solid #efeff3;
}

#btn {
    background-color: #4caf50;
    border: none;
    margin-left: 4.5%;
    width: 90%;
    height: 40px;
    color: whitesmoke;
}

#btn1 {
    background-color: #4caf50;
    border: none;
    margin-left: 4.5%;
    width: 90%;
    height: 40px;
    color: whitesmoke;
}

#container {
    width: 40%;
    overflow: hidden;
    margin: auto;
    box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.6);
    border-radius: 10px;

}

#innerBox {
    display: flex;
    width: 200%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#box1 {
    width: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);


}

#box2 {
    width: 50%;
}

#slide-controls {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;

}

label {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 80px;
    z-index: 1;
    color: #fff;
    cursor: pointer;

}

.slidelogin,
.slidesignup {
    font-size: 18px;
    font-weight: bold;
}

.slidesignup {
    color: #000;
}

.slider-tab {
    height: 100%;
    position: absolute;
    width: 50%;
    left: 0;
    z-index: 0;
    background-color: #c7c7c9;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#signup:checked~.slider-tab {
    left: 50%;
}

#signup:checked~.slidesignup {
    color: #fff;
}

#signup:checked~.slidelogin {
    color: #000;
}

input[type="radio"] {
    display: none;
}