*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
    background: #6a4cd7;
    /* background: rgba(245, 245, 245, 0); */
    /* background-image: url(images/people.jpg);
    background-repeat: no-repeat;
   
   background-size: 100vw 100vh; */
}
.image{
    background-color: #ffffff;
    width: 300px;
}
img{
    padding: 20px;
}
.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 700px;
    max-height: 500px;
}
.columns{
    display: flex;
    flex-direction: row;
    height: 450px;
    width: 600px;
    border: 0;
    outline: 0;
    overflow: hidden;
    border-radius: 20px;
    
}
.columns .col1{
    flex-basis: 50%;
    padding: 15px ;
    background-color: #031a62;
    text-align: left;
    color: whitesmoke;
}
.columns .col1 h1{
    margin-left: 10px;
}
.columns .col1 p{
    font-size: small;
    padding: 15px;
}
.columns .col1 p + p{
    font-weight: bold;
}
.columns .col2{
    flex-basis: 50%;
    padding: 15px ;
    /* background-color: #6a4cd7; */
    background: transparent;
    text-align: left;
    /* color: white; */
    border: 2px dotted;
}
.columns .col2 h1{
    color: #031a62;
    margin-bottom: 10px;
}
.col2 form input{
    padding: 5px;
}
.columns .col2 form .formDetails{
    padding-top: 10px;
    padding-bottom: 10px;

}
.columns .col2 form .formDetails input{
    outline: 0;
    background-color: aliceblue;
    overflow: hidden;
    border: 0;
    border-radius: 5px;
}

.columns .col2 form .formDetails > p,
.columns .col2 form .formDetails label:not(label[name="status"])
{
    font-weight: bolder;
}

.col2 form button{
    display: flex;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 35px;
    margin-top: 40px;
    left: 30%;
    background: #031a62;
    color: whitesmoke;
    border: 0;
    outline: 0;
    overflow: hidden;
    border-radius: 25px;
    transition: 1s;

}
.col2 form button:hover{
    background: #fff; 
    color: #000;
}
.columns .col2 form .formDetails input[type="radio"]{
    accent-color: #6a4cd7;
    /* accent-color: rgba(50, 50, 50, 1); */
    /* color: black; */
}

/* For tablets and smaller screens */

@media (width: 1280px) and (height: 800px) {
    .columns .col1 p,.columns .col2 form .formDetails p, .columns .col2 form .formDetails label, .col2 form button {
        font-size: x-large;
     }
     .col2 form button{
         width: 200px;
         height: 70px;
         margin-top: 30%;
     }
     .columns{
         display: flex;
         flex-direction: row;
         height: 600px;
         width: 700px;
         border: 0;
         outline: 0;
         overflow: hidden;
         border-radius: 20px;
     }
 
}

@media (width: 1024px) and (height: 600px) {
    .container{
        margin-top: 3%;
        top: 52%;
    }
    .image{
        background-color: #ffffff;
        width: 300px;
    }
    img{
        padding: 5px;
    }
    .columns{
        display: flex;
        flex-direction: row;
        height: 450px;
        width: 700px;
        border: 0;
        outline: 0;
        overflow: hidden;
        border-radius: 20px;
    }
    .col2 form button{
        width: 200px;
        height: 70px;
        margin-top: 0%;
    }
}
@media (max-width: 1024px) {
 
 .columns .col1 p,.columns .col2 form .formDetails p, .columns .col2 form .formDetails label, .col2 form button  {
    font-size: large;
 }
 .col2 form button{
    width: 150px;
    height: 40px;
    margin-bottom: 5%;
}
}

@media (min-height: 1366px) {
 

    .columns .col1 p,.columns .col2 form .formDetails p, .columns .col2 form .formDetails label, .col2 form button {
       font-size: x-large;
    }
    .col2 form button{
        width: 200px;
        height: 70px;
        margin-top: 30%;
    }
    .columns{
        display: flex;
        flex-direction: row;
        height: 600px;
        width: 700px;
        border: 0;
        outline: 0;
        overflow: hidden;
        border-radius: 20px;
    }
 }


/* For mobile devices */
@media (max-width: 670px) {
    h1 {
        margin-top: 15%;
        font-size: 1.5rem;
        margin-bottom: 15%;
    }
    .container{
        margin-top: 15%;
    }
    .columns{
        width: 350px;
        height: auto;
    }
    img{
        padding: 10px;
    }
    .columns .col1 p,.columns .col2 form .formDetails p, .columns .col2 form .formDetails label {
        font-size: small;
     }
     .col2 form button{
        width: 100px;
        height: 40px;
        margin-bottom: 5%;
        font-size: medium;
    }
}