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

::after,
::before {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

html {
    font-size: 120%;
    font-family: "Lato", sans-serif;
    line-height: 1.5;
}

a {
    text-decoration: none;
}
ul {
    -webkit-padding-start: 0px !important;
            padding-inline-start: 0px !important;
}
.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.content {
    display: flex;
}

.group-title {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.title {
    color: #633c7e;
}

.sub-title {
    font-size: 1.5rem;
}

.title-form {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn {
    outline: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    filter: brightness(0.9);
}

.btn:focus,
.btn:active,
input:focus,
input:active {
    outline: none;
}

.btn-large {
    width: 100%;
    max-width: 350px;
}

.btn-primary {
    background: #144ec7;
    color: #fff;
    font-size: 0.9rem;
    border-radius: 4px;
}

.btn-login-form {
    padding: 0.8rem 0;
}

input,
select {
    font-size: 0.8rem !important;
    color: #696969;
    border: 1px solid #a6b7c7 !important;
    width: 100%;
    padding: 0.8rem 0.4rem;
    border-radius: 8px !important;
}
input[type="date"] {
    color: #696969 !important;
}

input::-moz-placeholder {
    color: #a6b7c7 !important;
}

input:-ms-input-placeholder {
    color: #a6b7c7 !important;
}

input::placeholder {
    color: #a6b7c7 !important;
}
select:disabled {
    color: #a6b7c7 !important;
}

.mt-20 {
    margin-top: 2rem;
}

.group-link-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.link-footer-form {
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #a6b7c7;
}

.link-footer-form:hover {
    color: #144ec7;
    text-decoration: underline;
}

.is-invalid-feedback {
    width: 100%;
    font-size: 0.7rem;
}

.is-invalid-feedback.alert-danger {
    color: #c92241 !important;
    font-weight: bold;
    background-color: transparent !important;
}

.result {
    width: 100%;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #b7dbba;
    color: #48754b;
}

.alert-danger {
    background-color: #f06363;
    color: #8d0505;
}

.alert-warning {
    background-color: #f3e992;
    color: #000;
}

.is-valid-feedback {
    font-size: 0.8rem;
    font-weight: 400;
    width: 100%;
    height: 2.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 1rem;
}

.header-dashboard {
    width: 100%;
}

.header-dashboard .container .content-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid red;
}

