:root {
    --body_gradient_left: #151516;
    --input_bg: #E5E5E5;
    --input_hover: #eaeaea;
    --submit_bg: #5f000b;
    --submit_hover: #c56c07;
    --icon_color: #6b6b6b;
}

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

body {
    /* make the body full height*/
    height: 100vh;
    /* set our custom font */
    font-family: 'Roboto',
        sans-serif;
    /* create a linear gradient*/
    background-color: var(--body_gradient_left);
   
}

#form_wrapper {
    width: 40%;
    height: 700px;
    margin: auto;
    background-color: var(--form_bg);
    border-radius: 50px;
    display: block;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0vw;
    padding: 5vh 15px;
}


#form_right {
    display: grid;
    /* single column layout */
    grid-template-columns: 1fr;
    /* have some gap in between elements*/
    grid-gap: 20px;
    padding: 10% 5%;
}
#logo {

margin: auto;}

#form_right img{
    width: 60px;
    margin: auto;
	
}
#form_right img:{
    width: 290px;
    height: 150px;
    margin: auto;
    border-radius: 10px;
}





#form_right img:nth-child(2){
    width: 290px;
    height: 150px;
    margin: auto;
    border-radius: 10px;
}
#form_right p{
    padding: 0.75rem 0;
    width: 100%;
    font-size: 0.95rem;
    color: var(--input_bg);
    text-align: center;
}
#form_right p.mobile{
    padding-top: 0.15rem;
    padding-bottom: 0.10rem;
    width: 100%;
    font-size: 1rem;
    color: var(--input_bg);
    text-align: center;
}
#form_right img:nth-child(2){
    width: 290px;
    height: 150px;
    margin: auto;
    border-radius: 10px;
}
.input_container {
    background-color: var(--input_bg);
    /* vertically align icon and text inside the div*/
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.input_container label{
	color: var(--icon_color);
    background-color: inherit;
	font-size: 1.3rem;
    font-weight: 400;
}
.input_container:hover {
    background-color: var(--input_hover);
}

.input_container{
    height: 60px;
    /* make the borders more round */
    border-radius: 15px;
    width: 100%;
}
#input_submit {
    height: 60px;
    /* make the borders more round */
    border-radius: 15px;
    width: 45%;
}

.input_field {
    /* customize the input tag with lighter font and some padding*/
    color: var(--icon_color);
    background-color: inherit;
    width: 90%;
    border: none;
    font-size: 1.3rem;
    font-weight: 400;
    padding-left: 30px;
}

.input_field:hover,
.input_field:focus {
    /* remove the outline */
    outline: none;
}

#input_submit {
    /* submit button has a different color and different padding */
    background-color: #63000b;
    padding-left: 0;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}
#input_submit:first-child{
    margin-right: 1.5rem;
}

#input_submit:hover {
    background-color: var(--submit_hover);
    /* simple color transition on hover */
    transition: background-color,
        1s;
    cursor: pointer;
}
#form {
    display: grid;
    /* single column layout */
    grid-template-columns: 1fr;
    /* have some gap in between elements*/
    grid-gap: 20px;
    padding: 10% 5%;
}
#form img{
    width: 60px;
    margin: auto;
}
#form img:nth-child(2){
    width: 290px;
    height: 150px;
    margin: auto;
    border-radius: 10px;
}
#form p{
    padding: 0.10rem 0;
    width: 100%;
    font-size: 1rem;
    color: var(--input_bg);
    text-align: center;
}
#form p:nth-child(2){
    margin-top: 0;
    padding: 0.10rem 0;
    width: 100%;
    font-size: 1rem;
    color: var(--input_bg);
    text-align: center;
}
#form img:nth-child(2){
    width: 290px;
    height: 150px;
    margin: auto;
    border-radius: 10px;
}

  .block
  {
    max-width: 900px;
    padding: 0 20px; 
    text-align: center;  
  }
  label{
    color: var(--input_bg);
  }
  .input-res
  {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: 15px/1 'Open Sans', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 50%;
    max-width: 400px;
    background-color: #ddd;
    border: none;
    padding: 10px 11px 11px 11px;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    margin-left: 0.55rem;
    box-sizing: border-box; 
  }

.btn-primary{
    padding: 1rem 2.5rem;
    background-color: #5f000b;
    color: white;
    margin-left: 5rem;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
}
.btn-primary{
    padding: 1rem 2.5rem;
    background-color: #5f000b;
    color: white;
    margin-left: 5rem;
    border-radius: 15px;
    border: none;
    font-size: 1.1rem;
}
.btn-primary:hover{
    background-color: #c56c07;
    cursor: pointer;
}
i {
    color: var(--icon_color);
}

.pts1 {
    width: 80px !important;
}
.pts2 {
    width: 292px !important;
}
/* make it responsive */
@media screen and (max-width:768px) {

    /* make the layout  a single column and add some margin to the wrapper */
    #form_wrapper {
        grid-template-columns: 1fr;
        margin-left: 10px;
        margin-right: 10px;
        width: 100%;
    }
    /* on small screen we don't display the image */
    #form_left {
        display: none;
    }
}