@font-face {
    font-family: "Poppins"; 
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Poppins"; 
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
input {vertical-align: middle;}
label {
    font-weight: 400;
    margin: 0px 12px 5px 5px;
}
/* body {
    background: url('../assets/frontend/img/Blue-Theme.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Josefin Sans", sans-serif; 
} */
body {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0ebf8;
    /* font-family: "Roboto", sans-serif;  */
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}
.form-container {
    /* background: white; */
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    margin:auto;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}
button {
    padding: 10px 20px;
    border: none;
    background: #ee6f1f;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
button:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.logo{margin-bottom:30px;}
.logo img {width: 150px;margin:auto;display:block;}
.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease-in-out;
    margin-bottom: 8px;
    width: 100%;
    font-size: 14px;
    background:unset;
}

.form-control:focus {
    border-bottom: 2px solid #035295;
    outline: none;
    box-shadow: none;
}
.boxstyle{
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.form-label {margin-bottom: 0;}
p span, label span{color: red;font-size: 22px;vertical-align: sub;}
.error {
    color: #ff0000;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 0px !important;
    padding-bottom: 5px;
}
.form-control.error{border-bottom: 1px solid #ff0000 !important;}
.alert-success , .alert-danger{padding-left: 15px  !important;border: unset !important;}
.close{background: unset !important;color: #000;}
h6{
    font-size: 1rem;
    background: #ee6f1f;
    padding: 14px;
    color: #fff;
    margin: 0;
    text-align: center;
}
.text-area {
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.text-area:focus {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    outline: none;
}
.margin-bottom-input{
    margin-bottom: 25px;
}
.sectiondata{
    padding: 15px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 0px 0 15px 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: white;
}
.boxstyle2{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 15px;
border: 1px solid #ccc;
border-radius: 10px;
}
@media only screen and (max-width: 768px) {
.form-container {width: 100%!important;}
label {font-weight: 400;font-size: 12px;margin: 0px 10px 5px 10px;}
input[type="checkbox"] + label {font-size: 14px;}
p{font-size: 15px;}
}