*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
  min-height: 100vh;
  width: 100%;
  background-color: #000;
  padding: 20px 100px;
}
.registmain{
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.registration-form{
    min-height: 90vh;
    width: 100%;
    background-color: rgba(6, 85, 68, 0);
    display: flex;
}
.reg-left{
    /* position: absolute;
    top: 0;
    left: 0; */
    min-height: inherit;
    width: 40%;
    /* background-image: url("../img/back.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color:aliceblue;
    background-blend-mode: darken;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    /* border-top-right-radius: 30px; */
    /* border-bottom-right-radius: 30px; */
    z-index: 1;
    /* box-shadow: 3px 0px 20px 0px #00000094; */
}
.img-box{
    height: 220px;
    width: 220px;
     /*background-color: chocolate; */
    border-radius: 50%;
    /*padding:10px;*/
    display:flex;
    justify-content:center;
    align-items:center;
}
.img-box img{
    height: 190px;
    width: 150px;
    /*border-radius: 50%;*/
    /*object-fit: cover;*/
    /*background-color:blue;*/
    /*padding:10px;*/
}
.reg-left h1{
    text-transform: uppercase;
    color: #1b1919;
    font-family: arial;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
}
.reg-left h3{
    color: #191919;
    font-family: arial;
    font-weight: 600;
}
.reg-left p{
    color: #191919;
    font-family: arial;
    font-weight: 300;
    font-size: 0.8rem;
}
.reg-right{
    /* position: absolute;
    top: 0;
    left: 25%; */
    min-height: inherit;
    width: 60%;
    background-color: rgb(4, 58, 58);
    z-index: 0;
    padding-left: 18px;
    padding-right: 10px;
    padding-top: 30px;

}
.reg-right h2{
    position: relative;
    min-height: 50px;
    font-size: 2.4rem;
    color: #9c9b9b;
}
.reg-right h2 span{
    color: #fff;
}
.reg-right h2::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 4px;
    width: 45%;
    background-color: #ffffff;
    border-radius: 50px;
    transition: all ease 1s;
}
.reg-right h2:hover .reg-right h2::after{
    width: 100%;
    transition: all ease 1s;
}
.box{
    height: 60px;
    width: 100%;
    /* background-color: blue; */
    margin-top: 25px;
    display: flex;
    gap: 30px;

}
.box-in{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.inputbox{
    height: 40px;
    width: 250px;
    outline: none;
    padding: 5px;
    background-color: transparent;
    border: 2px solid rgb(214, 214, 214);
    border-radius: 5px;
    color: #fff;
}
.box-in span{
    color: rgb(209, 12, 12);
}
.button{
    height: 40px;
    width: 40%;
    cursor: pointer;
    background-color: #000080;
    border: none;
    color: #fff;
    border-radius: 20px;
    font-size: 1.3vw;
    margin-top: 10px;
}
.reset{
    height: 40px;
    width: 40%;
    cursor: pointer;
    background-color: #000080;
    border: none;
    color: #fff;
    border-radius: 20px;
    font-size: 1.3vw;
    margin-top: 10px;
}
.selectbox{
    background-color: rgb(4, 58, 58);
}
.backhomebutton{
    text-decoration: none;
    height: 40px;
    width: 20vw;
    font-size: 1.2rem;
    border: 1px ;
    background-color: darkred;
    color: #fff;
}
::placeholder{
    color:rgb(214, 214, 214);
}

@media (max-width:650px) {
    #main{
        min-height: 100vh;
        width: 100%;
        background-color: #000;
        padding: 20px;
    }
    .registration-form{
        flex-direction: column;
    }
    .reg-left{
        min-height: 60vh;
        width: 100%;
    }
    .reg-right{
        width: 100%;
        padding-bottom: 10px;
    }
    .box{
        height: fit-content;
        flex-direction: column;
        /* gap: 0; */
    }
    .inputbox{
        height: 50px;
        width: 100%;
    }
    .reg-left h1{
        text-transform: uppercase;
        color: #1b1919;
        font-size: 2.4rem;
    }
    .inputbox{
        font-size: 1.2rem;
    }
    .button{
        width: 45%;
        font-size: 1.2rem;
    }
    .reset{
        width: 45%;
        font-size: 1.2rem;
    }
    .box-in span{
        font-size: 1.2rem;
    }
    .reg-right h2{
        height: fit-content;
        width: 90%;
        font-size: 7vw;
        padding-bottom: 5px;
    }
}
