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

:root{
    --txtColor:#090b3c;
    /* --dark-color:rgb(228,120,47);
    --light-color:rgb(184, 156, 137); */

    --dark-color:#9b00e8;
    --light-color:#f046ff;
    --bg-dark-samantha:rgb(228,120,47);
    
}
body {
    background: #fbf3ff;
}

#firstcontainer {
    position: absolute;
    max-width: 800px;
    height: 500px;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#secondcontainer {
    position: absolute;
    max-width: 1600px;
    height: 1000px;
    margin: auto;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
}
.myRightCtn {
    position: relative;
    background-image: linear-gradient(45deg, var(--light-color), var(--dark-color));  
    border-radius: 25px;
    height: 100%;
    padding: 25px;
    color: rgb(192,192,192);
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.myLeftCtn {
    position: relative;
    background: #fff;
    border-radius: 25px;
    height: 100%;
    padding: 25px;
    padding-left: 50px;
}
.myLeftCtn header {
    color: var(--txtColor);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left !important;;
    
}

.para {
    color: rgb(247, 247, 247);
    font-size: 15px;
    font-weight: 600;    
}

header1 {
    color: var(--bg-dark-samantha);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
header2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.row {
    height: 100%;
}
.myCard {
    position: relative;
    background: #fff;
    height: 100%;
    border-radius: 25px;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.7);
}

.myRightCtn header {
    color: rgb(255, 254, 254);
    font-size: 23px;
    font-weight: 800;   
    
}

.box {
    position: relative;
    margin: 20px;
    margin-bottom: 100px;
}

.myLeftCtn .myInput {
    width: 230px;
    border-radius: 25px;
    margin-bottom: 25px;
    padding: 10px;
    padding-left: 50px;
    border: none;
    -webkit-box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
}

.myLeftCtn .myFormInput {
    width: 400px;    
    margin-bottom: 25px;
    padding: 10px;
    border: none;
    margin-bottom: 0px;

}

.myLeftCtn .myFormInputRight {
    width: 400px;    
    margin-bottom: 25px;
    padding: 10px;    
    margin-top: 15px;
    border: 1px solid orange;
    -webkit-box-shadow: 0px 10px 25px -14px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 25px -14px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 25px -14px rgba(0,0,0,0.7);

}



.myLeftCtn .myLabelInput {
    color: rgb(3, 104, 33);
    width: 500px;
    padding-left: 5px;
    border: none;
    margin-bottom: 0px;
}

.myLeftCtn .myLabelInputLeft {
    color: rgb(15, 8, 109);
    width: 500px;
    padding-left: 5px;
    border: none;
    margin-bottom: 0px;
}

.myLeftCtn #check_1 {
    margin-bottom: 25px;
}

.myLeftCtn .myInput:focus {
    outline: none;
}

.myLeftCtn .butt {
    background: linear-gradient(45deg, var(--light-color), var(--dark-color));
    color: #fff;
    width: 230px;
    border: none;
    border-radius: 25px;
    padding: 10px;
    -webkit-box-shadow: 0px 10px 41px -11px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 41px -11px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 41px -11px rgba(0,0,0,0.7);
}
.myLeftCtn .butt:hover {
    background: linear-gradient(45deg, var(--light-color), var(--dark-color));
}
.myLeftCtn .butt:focus {
    outline: none;
}

.myLeftCtn .fas {
    position: relative;
    color: var(--dark-color);
    left: 36px;
}

.butt_out {
    background: transparent;
    color: #fff;
    width: 120px;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 10px;
    -webkit-box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
    box-shadow: 0px 10px 49px -14px rgba(0,0,0,0.7);
}

.butt_out:hover {
    border: 2px solid #eecbff;
}

.butt_out:focus {
    outline: none;
}


