body {
    margin: 0;
}
.main {
    background-image: url(./image/14.jpg);
    height: calc(100vh - 0px);
    background-size: cover;
    max-width: 100%;
    max-height: 100%;
    box-shadow: inset 0 0 6px #bb9c66cc;
}
.section {
    display: flex;
    flex-wrap: wrap;
    max-width: 57%;
    margin-left: auto;
}
.title {
    margin: auto;
    font-size: 70px;
    padding-top: 35px;
    color: #c09c5d;
    text-shadow: 5px 5px #181717e3;
}
.pDescription {
    display: none;
}
.citation {
    width: 100%;
    height: 120px;
    text-align: center;
    padding: 20px 0 30px 0;
    
}
.effect {
    color: #fff;
    font-size: 30px;
    animation: 0.9s color infinite;
}
@keyframes color {
    10% {
      color: #cec8a2;
    }
}
.form {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
}
.signUp {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 350px;
    height: 350px;
    font-size: 25px;
    border-radius: 30px;
    margin: 0 0 0 200px;
    background: linear-gradient(-40deg, #2f2f2f, #cec8a2);
}
.signUp {
    display: none;
}
.signUpAndLogin.visible {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 350px;
    height: 350px;
    font-size: 25px;
    border-radius: 30px;
    margin: 0 0 0 200px;
    background: linear-gradient(-40deg, #2f2f2f, #cec8a2);
}
.closeButton {
    display: flex;
    justify-content: center;
    width: 35px;
    margin: 5px 10px 0 10px;
    font-size: 25px;
    border-radius: 20px;
    outline: none;
    color: #474646;
    background: rgba(189, 185, 185, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}
.login {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 350px;
    height: 350px;
    font-size: 25px;
    border-radius: 30px;
    margin: 0 0 0 200px;
    background: linear-gradient(-40deg, #2f2f2f, #cec8a2);
}
.titleForm {
    text-align: center;
    margin: 0;
    color: #bb9c66;
}
.titleInput {
    margin: 0;
    font-size: 30px;
    color: #bb9c66;
    text-decoration: none;
}
.inputSignUp {
    font-size: 20px;
    outline: none;
    border-radius: 25px;
    background: rgba(153, 147, 147, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    padding: 7px 7px 7px 20px;
    margin: 0 20px 0 20px;
    animation: login 0.5s;
    transform: translateZ(0px);
}
@keyframes login{
    from { transform: translateZ(40%) scale(0, 0); opacity: 0; }
 }
.inputLogin {
    font-size: 20px;
    outline: none;
    border-radius: 25px;
    background: rgba(153, 147, 147, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    padding: 7px 7px 7px 20px;
    margin: 0 20px 0 20px;  
    animation: close 0.5s;
    transform: translateZ(0px);
}
@keyframes close{
    from { 
        transform: translateZ(40%) scale(0, 0); opacity: 0;
    }
}
.inputForm::placeholder {
    color: #292323;
  }
.inputForm:focus::-webkit-input-placeholder {
    color: transparent
}
.button {
    border: none;
    outline: none;
    border-radius: 25px;
    margin: 0 20px 0 20px;
    font-size: 25px;
    padding: 7px;
    cursor: pointer;
    background: rgba(153, 147, 147, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    transition-duration: 3s;
    color: #bb9c66;
}
.pForget {
    font-style: italic;
    text-align: center;
}
.loginSignup {
    text-align: center;
    text-transform: uppercase;
}
.buttonLogin {
    animation: buttonLogin 0.9s;
    transform: translateZ(0px);
}
@keyframes buttonLogin{
    from { transform: translateZ(70%) scale(0, 0); opacity: 0; }
}
.buttonOut {
    margin: 20px;
    padding: 10px;
    width: 100px;
    outline: none;
    font-size: 20px;
    line-height: 20px;
    color: #634e4edc;
    border-radius: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    animation: out 0.9s;
    transform: translateZ(0px);
}
@keyframes out{
    from { 
        transform: translateZ(70%) scale(0, 0); opacity: 0;
    }
}
.messages {
    padding-left: 30px;
    padding-right: 30px;
    color: #ff0606;
    margin: 0;
    font-size: 20px;
}
.message {
    padding-left: 30px;
    color: #ff0606;
    margin: 0;
    font-size: 20px;
}
.visibility.visible {
    display: none;
}
.wrapper {
    width: 750px;
    height: 650px;
    margin: 0 auto;
    position: relative;
}
.contentLogin {
    font-size: 25px;
    color: #07b1f5;
}
.sliderImage {
    width: 750px;
    height: 650px;
    overflow: hidden;
    position: relative;
}
.img {
    position: absolute;
    background-size: cover;
    width: 750px;
    height: 650px;
    opacity: 1;
    transition: all ease 1s;
}
.img1 {
   background-image: url(./image/1.jpg);
}
.img2 {
    background-image: url(./image/2.jpg);
}
.img3 {
    background-image: url(./image/3.jpg);
}
.img4 {
    background-image: url(./image/4.jpg);
}
.sliderImageOpacity {
    opacity: 0;
}
.scrollForwardBackward {
     margin-top: 660px;
}
.rewind {
    padding: 10px;
    font-size: 20px;
    line-height: 20px;
    outline: none;
    margin: 30px 0 0 15px;
    color: #634e4edc;
    border-radius: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}
.visible.visible {
    color: #ff0606;
}
.visibility.visible {
    display: none;
}
.text {
    color: #07b1f5;
    font-size: 25px;
    transition: 0.9s;
}
@media (max-width: 850px){
    .section {
       display: flex;
       flex-wrap: wrap;
       max-width: 100%;
    }
   .title {
       font-size: 40px;
       padding-top: 10px;
   }
   .login {
       width: 250px;
       height: 250px;
       margin: 0 0 0 70px;
   }
   .citation {
    padding: 10px 15px 20px 15px;
    height: 140px;
   }
   .button {
       font-size: 17px;
   }
   .titleInput {
       font-size: 19px;
   }
   .inputLogin {
       font-size: 17px;
   }
   .effect {
       font-size: 22px;
   }
   .signUpAndLogin.visible {
    width: 250px;
    height: 250px;
    margin: 0 0 0 70px;
   }
   .signUp {
    width: 250px;
    height: 250px;
    margin: 0 0 0 70px;
   }
   .img {
       width: 300px;
       height: 300px;
   }
   .contentLogin {
       font-size: 17px;
       padding-left: 20px;
   }
   .wrapper {
    width: 300px;
    height: 300px;
   }
   .buttonOut {
       margin: 15px 5px 5px 5px;
       padding: 5px;
       width: 60px;
       font-size: 14px;
       line-height: 14px;
   }
   .scrollForwardBackward {
    margin-top: 300px;
   }
   .rewind {
    margin: 25px 5px 5px 5px;  
    padding: 5px;
    width: 80px;
    font-size: 14px;
    line-height: 14px; 
   }
   .text {
       font-size: 14px;
   }
}