*{
    margin: 0;
    padding: 0;
}
#title{
    text-align: center;
    text-decoration: overline;
    color:#555;
    font-size: 50px;
}
.box{
    display: flex;
    flex-direction: row;
    width: 1200px;
    height: 700px;
    background: rgba(255, 255, 255,0.5);
    justify-self:center;
    align-items: center;
    margin-top: 100px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    
}

.image{
    width: 100%;
    height: 600px;
    margin-left: 100px;
    overflow: hidden;
    flex: 6;
    justify-content: center;
}
.image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}
.pass{
    width: 300px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 3;
}
.box1{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
}
.box0{
    flex: 1;
}
.box2{
    flex: 1;
}
.top span{
    position:fixed;
    bottom: 30px;
    right: 30px;
    font-size: 30px;
}
.form-pass{
    padding: 10px;
    box-shadow: 0,0,10px,rgba(48, 190, 188, 0.5);
}
.form-input{
    width: 250px;
    height: 50px;
    background: linear-gradient(to right, #e4e5e667, #cbc9ca43);
    box-shadow: 0,0,10px,rgba(48, 190, 188, 0.5);
    border: 0;
    border-radius: 10px;
}
#form-output{
    color: #bab8b8da;
    width: 125px;
    height: 50px;
    text-align: center;
    display: block;
    margin:0 auto;
    border: 0;
    box-shadow: 0,10px,20px,rgba(48, 190, 188, 0.5);
    border-radius: 10px;
}
#form-output:hover{
    background-color: #e4e1e122;
    box-shadow: 0,0,10px,rgba(0, 0, 0, 0.5);
}
input::placeholder{
    color: rgb(138, 131, 131);
    font-size: 20px;
    
}

.form-input+#form-output{
  font-family: "Noto Serif SC", serif;
}

@media screen and (max-width:1200px){
    .top span{
        color: #555;
        font-size: 15px;
    }
}

.top span:hover{
    color: rgba(255, 255, 255, 0.63);
}