body{
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    caret-color: #13b969;
}

#center-p{
    height: 80vh;
    min-height: 500px;
    width: 80vw;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 13px 0px rgb(0 0 0 / 15%);
}

#right{
    width: 35%;
    background: rgb(19,185,105);
    display: flex;
    justify-content: center;
    align-items: center;
    gap :20px;
    flex-direction: column;
    text-align: center;
}

#right img{
    width: 65%;
    margin-bottom: 20px;
}
#right h1{
    color: #fff;
    font-size:4vmin;
    cursor: default;
}
#right hr{
    width: 20%;
    background-color: #fff;
    height: 4px;
    border: none;
    border-radius: 200px;
}
#left{
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
#left span{
    font-weight: 700;
    width: 95%;
    text-align: right;
    cursor: default;
}
#left span span{
    color: var(--medium-sea-green);
}
#left h1{
    font-size: 50px;
    margin: 30px 0 0 0;
    cursor: default;
}

#inputs-p{
    height: 60%;
    width:70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-top: 10px;
}

.input-p{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 70%;
    gap: 10px;
    margin-top: 25px;
}

.input-p input{
    /* margin-right: 15px; */
    width: 100%;
    font-size: 18px;
    height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    border: none;
    background-color: var(--cultured);
    transition: all 200ms ease;
    outline-color: #13b969;
    
}



.input-p input:focus{
   outline: 3px solid hsl(151, 81%, 40%, 0.5);
}

.input-p label{
    font-size: 20px;
    color: var(--medium-sea-green);
}
.input-p div{
    display: flex; 
    align-items: center;
    width: 100%;
}
.material-icons-round{
   width: 40px !important;
}

#left  button{
    border: none;
    color: #fff;
    background: var(--medium-sea-green);
    font-size: 20px;
    width:60%;
    height: 40px;
    border-radius: 10px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer; 
    transition: all 200ms ease-in-out;
    box-shadow:0px 0px 0 0 hsl(151deg 60% 40%);
    min-width: max-content;
}


#left button:hover{
   box-shadow:2px 4px 0 0 hsl(151deg 60% 40%);
}

#error-message{
    color: red;
    width: 50%;
    border: 1px solid red;
    margin: 10px 0 0 0;
    border-radius: 5px;
    background: rgb(255 0 0 / 5%);
    text-align: center;
}

@media (max-width: 800px)  {
    #right{
        display: none
    }
    #left{
        width: 100%
    }
    #left h1{
        margin: 10px 0 0 0;
    }
}
@media (max-height: 700px)  {
    
    #left h1{
        margin: 10px 0 0 0;
    }
}
@media (max-width: 500px)  {
    body{
        height: 100vh;
    }
    #center-p{
        width: 100%;
        height: 100%;
        box-shadow: none;
    }
    .input-p label{
        font-size: 18px;
    }
    #inputs-p{
        height: 60%;
        width:80%;
        
    }
    #left  button{
        font-size: 18px;
        width: 65%
    }
    #left form{
        box-shadow: 0 0 13px 0px rgb(0 0 0 / 7%);
        border-radius: 20px;
        height: 50%;
        margin-top: 40px;
    }
    .input-p input:focus{
        box-shadow: 0px 0px 0px 3px #13b96980;
        outline: none
    }
    #error-message{
        width: 65%;
        margin: 31px 0 0 0;
    }
}