*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:#ccc;
}

.container{
    max-width: 900px;
    margin: 0 auto;
}
.apply_box{
    max-width: 600px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 4px 3px 5px rgba(1, 1, 1, 0.2);
}
.small{
    font-size: 20px;
}
.form_container{
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}
.form_control{
    display: flex;
    flex-direction: column;
}
label{
    font-size: 15px;
}
input,
select,
textarea{
    margin-top: 10px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}
input:focus{
    outline-color: red;
}
select:focus{
    outline-color: RED;
}
.button_container{
    display: flex;

    justify-content: flex-end;
    margin-top: 20px;
}
button{
    background-color: rgb(30, 164, 30);
    padding: 10px;
    border-radius: 5px;
    border: transparent solid 2px;
    transition: 0.3s ease-in;
    font-weight: bold;
    color: white;
}
button:hover{
    background-color: #ccc;
    transition: 0.3s ease-out;
    color: black;
    cursor: pointer;
}
.textarea_control{
    grid-column:1 / span 2;
}
.textarea_control textarea{
    width: 100%;
}
@media (max-width:460px) {
    .textarea_control{
        grid-column:1 / span 1;
    }
}