* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    background-color: #f1f1f1;
    width: 100%;
    height: 100%;
}

.la-body-container {
    padding: 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.la-header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.la-header-title {
    font-size: 1.8rem;
    font-weight: bold;
    padding-top: 15px;
}

.la-header-sub-title {
    font-size: 1rem;
}

.la-header-sub-title span {
    font-weight: bold;
}

.la-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}

/* Form */
#application-form {
    width: 60%;
    padding-bottom: 30px;
}

.la-form-group {
    width: 100%;
    margin-bottom: 15px;
}

.la-form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #706c6c;
}

.la-form-group label.is-invalid {
    color: crimson;
}

.la-form-group label span {
    color: crimson;
    font-weight: 600;
}

.la-form-group .la-form-control {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #b9b7b7;
    outline: none;
}

.la-form-group .la-form-control.is-invalid {
    border: 1px solid crimson;
    color: crimson;
}

.la-form-group .la-invalid-feedback,
.la-form-group small {
    display: block;
    margin-top: 3px;
    color: #3c3939;
    font-size: 11px;
}

.la-form-group .la-invalid-feedback {
    color: crimson;
}

.form-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .355rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
}

.btn-sumbit {
    width: 250px;
    margin-top: 15px;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-sumbit:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.form-image-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.form-image-group .la-form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 30%; */
    padding: 0px 10px;
}

.image-preview {
    width: 100px;
    height: 100px;
    /* border: 1px solid #ddd; */
    margin: 10px;
    object-fit: cover;
}

.loader {
    display: none;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
}

input[type="file"] {
    font-size: 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 768px) {

    #application-form {
        width: 100%;
    }

    .form-image-group{
        display: flex;
        flex-wrap: wrap;
        /* flex-direction: column; */
    }
    .la-form-group{
        width: 100%;
    }

    /* input[type="file"] {
        width: 80%;
    } */

    .la-body-container {
        padding: 0px 60px;
    }
  }