*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
}

.wrapper{
    display: flex;
}
.left{
    background: #fff;
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.right{
    background-color: #f0cf12;
    width: 50%;
    padding: 20px;
    height: 100vh;
    display: grid;
    place-items: center;
}

.title a{
    color: #f0cf12;
    font-size: 40px;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.title span {
    color: #175a7e;
}

.login-form{
    display: flex;
    gap: 20px;
    width: 80%;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    margin:  50px 0;

    
}

.register-form{
    display: flex;
    gap: px;
    width: 100%;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    margin:  0px 0;

    
}

.flex-items{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px 0;

}

.input-item{
    display: grid;
    gap:4px;
}

.input-item label{
    color: #787878;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    padding: 0 5px;
    text-transform: capitalize;
}

.input-item input{
    padding: 10px;
    border: #787878 solid 1px;
    border-radius: 5px;
    font-size: 20px;
    outline: none;
}

.input-item input:focus{
    border: #175a7e solid 1px;
    border-radius: 5px;
    font-size: 20px;
    background: rgb(113, 113, 113, 0.1);

}

.submit-btn{
    background-color: #f0cf12;
    width: 100%;
    outline: none;
    border: #f0cf12;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: #175a7e;
    transition: all;
    transition-duration: 1s;
}

.submit-btn:hover{
    background-color: #175a7e;
    width: 100%;
    outline: none;
    border: #175a7e;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: all;
    transition-duration: 1s;
}

@media screen and (max-width: 480px) {
    
    .wrapper{
        display: flex;
        flex-direction: column;
    }
    .right{
        width: 100%;
        visibility: hidden;
    }
    .left{
        width: 100%;
    }
    .login-form{
        width: 100%;
    }
    .register-form{
        width: 100%;
    }
    .flex-items{
        display: flex;
        flex-direction: column;
        width: 100%;
      }
  }
  

.right img{
    width: 60%;
    height: 60%;
    border-radius: 50%;
}

.register-btn {
    background-color: #175a7e;
    width: 100%;
    outline: none;
    border: #f0cf12;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    transition: all;
    transition-duration: 1s;
}
.register-btn a{
    color: #fff ;
    text-decoration: none;

}

.register-btn a:hover{
    color: #175a7e ;
    text-decoration: none;
}

.register-btn:hover{
    background-color: #f0cf12;
    width: 100%;
    outline: none;
    border: #f0cf12;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #175a7e;
    margin-top: 10px;
    transition: all;
    transition-duration: 1s;
}
