*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.main{
    height: 100vh;
    width: 100%;
    background-color: rgb(203, 183, 240);
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-div{
    height: 530px;
    width: 650px;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 1px 1px 20px black;
    background-color: white;
    display: flex;
}
label{
    width: 100%;
    margin: 10px 0;
}
input{
    width: 100%;
    height: 30px;
    padding-left: 10px;
    font-size: 15px;
}
#course{
    height: 30px;
    width: 100%;
    margin-bottom: 10px;
}

.qr-code{
    height: 100px;
    width: 100px;
    margin: auto;
    border: 1px solid black;
    font-size: 12px;
}
.qr-code img{
    width: 100%;
}
p{
    font-size: 12px;
    color: red;
    font-weight: 700;
}
.image-field p{
    color: black;
}
.image-field{
    display: flex;
}
#response{
    display: none;
    color: #3b3b3b;
}
textarea{
    padding: 10px;
}
@media(max-width:576px){
    .main {
        align-items: unset;
        justify-content: unset;
    }
    .outer-div{
        width: 100%;
        height: max-content;
    }
}
.currently-working{
    font-size: 14px;
}
#checkbox_job{
    width: 5%;
    margin-right: 10px;
    align-self: center;
}
#checkbox_term{
    width: 5%;
    margin-right: 10px;
    align-self: center;
}
.term{
    font-size: 14px;

}
#text{
    width: 100%;
    resize: none;
    outline: none;
}
#buttn{
    background-color: rgb(42, 42, 223);
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: 700;
    transition: 0.2s;
}
#buttn:hover{
    box-shadow: 1px 1px 20px blueviolet;
}
.result{
    height: 30px;
    width: 265px;
    border: 1px solid black;
}