*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
}

 body{
    width: 100%;
    height: 100%;
    background-image: url(https://images.pexels.com/photos/5199147/pexels-photo-5199147.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(16px);
    
 }

 .container {
    display: flex;
    width: 50%;
    background-color:#BCC5C5 ;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
 }

 .left-bar{
    width: 100%;
    background-image: url(https://images.pexels.com/photos/5199147/pexels-photo-5199147.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-position: center;
    background-size: cover;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
 }
 .right-bar{
    text-align: center;
    padding: 30px 50px;
 }
 .right-bar-title {
    font-size:37px ;
    margin-bottom: 20px;
    border-bottom: 3px solid #9B8684;
    display: inline-block;
    padding-bottom: 10px;
    border-radius: 2px;
 }
 .right-bar-form {
    display: flex;
    flex-direction: column;
    gap: 27px;
 }
 .field {
    padding: 8px;
    font-size: 18px;
    outline: none;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 2px solid black;
 }
 .form-btn {
    border: none ;
    background-color:#9B8684 ;
    padding: 12px;
    font-size: 17px;
    color:white;
    border-radius: 5px;
    cursor: pointer;
 }
 .field:focus {
    border:2px solid #9B8684;
    background-color:rgb(247, 238, 238) ;
 }

 textarea{
    resize: none;
 }