* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

body {
    background: #EBEBEB;
}

nav {
    display: flex;
    justify-content: center;

    background: #FEC601;
    padding: 14px;
}

.mt-50 {
    margin-top: 50px !important;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    text-align: center;
    background: #fff;
    border: 1px solid #E0E0E0;
    padding: 18px;
    margin: 20px;
    gap: 15px;

    border-radius: 0px 0px 10px 10px;
}

.card .logo {
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo {
    max-width: 100px;
}

.divisor {
    height: 1px;
    width: 100%;
    background: #EBEBEB;

    margin-bottom: 25px;
}

.highlight-text {
    color: #FEC601;

    font-weight: 700;
    font-size: 14px;
}

button {
    background: #274BFD;
    color: #fff;
    width: 100%;

    outline: none;
    border: none;
    padding: 16px;

    border-radius: 5px;

    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 500;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;

    width: 100%;
}

.input-group label {
    color: #7C7C7C;
    margin-bottom: 8px;
}

.msg-error {
    color: rgb(193, 28, 28);
    text-align: center;
}

input {
    border: 1px solid #EBEBEB;
    padding: 14px 18px;
    border-radius: 10px;
    width: 100%;
}

footer {
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;

    background: #FFDC62;
    padding: 23px;
    width: 100%;
}

@media (max-width: 400px) {
    footer {
        padding: 10px 20px;
    }

    .mt-50 {
        margin-top: 25px !important;
    }
}

.d-none {
    display: none;
}

.loader {
    background: #D9D9D9;
    border-radius: 22px;
    width: 100%;
    height: 18px;
    position: relative;
}

.loader::before {
    content: '';
    background: #FEC601;
    width: var(--progress, 0%);;
    height: 18px;
    border-radius: 22px;
    position: absolute;
    left: 0px;
    top: 0px;

    transition: width 1s ease;
}

.video-container {
    background: #D9D9D9;
    width: 100%;
    height: 151px;
    border-radius: 14px;
}

#verificated-text {
    font-size: 12px;
}

.nav-send {
    border: 1px solid #C0AD00;
    background: #FFD234;
    padding: 8px 20px;

    font-size: 12px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.nav-send img {
    max-width: 20px;
}

.nav-send .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container-infos {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.container-infos p {
    display: flex;
    align-items: center;
    gap: 8px;
}