/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');*/

:root {
    --mobapps-color-primary: #0073F0!important;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #eef3f9;
}

.form__emergency__container {
    display: flex;
    height: calc(100vh - 100px);
    justify-content: center;
    align-items: center;
}

form#form__emergency {
    margin: 0 auto;
    width: 80%;
    height: 80vh;
    text-align: center;
    border-radius: 15px;
    /* overflow: hidden; */
    background-color: #fff;
}

.form__header {
    height: 100px;
    border-radius: 15px 15px 0 0;
    background-color: var(--mobapps-color-primary);
    color: #fff;
}

.form__header > h3 {
    line-height: 100px;
}

.form__body {
    /* padding: 20px 0; */
    padding-top: 15px;
}

.struct__input {
    width: 60%;
    margin: 10px auto;
}

input.form__input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #000 !important;
}

.struct__input > .form__label {
    display: inline-block;
    width: 100%;
    text-align: left;
    color: var(--mobapps-color-primary);
    font-weight: bold;
}

.form__textarea,
.form__input {
    outline: none;
    padding: 5px;
}

.form__input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--mobapps-color-primary);
}

.form__textarea {
    width: 100%;
    border-radius: 5px;
    resize: none;
    height: 100px;
    border-color: var(--mobapps-color-primary);
}

.form__textarea::-webkit-scrollbar {
    width: 5px;
}

.form__textarea::-webkit-scrollbar-thumb {
    background: var(--mobapps-color-primary);
    border-radius: 5px;
}

.form__footer {
    border-radius: 0 0 15px 15px;
    padding-bottom: 20px;
    /* border: 1px solid var(--mobapps-color-primary); */
    /* padding: 30px 0; */
}

.form__footer > button {
    font-size: 18px;
    padding: 15px 60px;
    border-radius: 50px;
    background-color: var(--mobapps-color-primary);
    border-color: var(--mobapps-color-primary);
}


@media only screen and (max-width: 800px) {
    form#form__emergency {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .struct__input {
        margin: 20px 20px;
        width: inherit;
    }

    .form__footer > button {
        padding: 5px 60px;
    }
}

@media only screen and (max-width: 378px) {
    .form__header {
        height: 70px;
    }

    .form__header > h3 {
        font-size: 1.5rem;
        line-height: 70px;
    }
}

@media only screen and (max-width: 320px) {


    .form__header > h3 {
        font-size: 1.2rem;
        line-height: 70px;
    }
}