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

body {
    background-color: #f4f7f9;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.main-content {
    width: 70%;
    margin: 50px auto;
}

.main-content__buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.main-content__button {
}

.main-content__button a {
    text-decoration: none;
    color: #3c464b;
    padding: 10px 20px;
}

table {
    border-collapse: collapse;
    border-bottom: 1px solid #eaeef0;
    /* margin: 50px auto; */
    width: 100%;
}

th {
    background-color: #eaeef0;
    padding: 10px 15px;
    text-align: left;
    color: #8096a2;
    font-size: 11px;
    text-transform: uppercase;
}

tr {
    background-color: #fefefe;
    border-bottom: 1px solid #eff2f4;
    color: #7f96a1;
    font-size: 12px;
}

td {
    padding: 20px 15px;
}

.code {
    color: #394349;
}

.page-header {
    height: 80px;
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid #f7f9fb;
}

.navbar {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar__input {
    margin-right: 5px;
}

.navbar__label {
    margin-right: 10px;
}

.navbar__btn {
    color: #3c464b;
    background-color: #fff;
    width: 140px;
    min-height: 40px;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.navbar__btn:hover {
    background-color: rgb(250,250,250);
}

.navbar__dropdown {
    position: absolute;
    right: 0;
    top: 100%;
}

.dropdown {
    background-color: white;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
    /* box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
    0 5px 15px 0 rgba(0,0,0,0.08); */
    display: none;
    width: 140px;
}

.active {
    display: block;
}

.dropdown__list {
    list-style: none;
}

.dropdown__item {
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.dropdown__item:hover {
    background-color: rgb(250,250,250);
}

.dropdown__item a {
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
}
/* 
.navbar__welcome-p {
    font-size: 11px;
    font-weight: bold;
    color: #3c464b;
} */

.navbar__logo {
    height: 100%;
    width: auto;
}

.input {
    border: 1px solid #e6ecef;
    padding: 5px;
    border-radius: 3px;
}

.navbar__input {
    width: 100px;
    height: 25px;
}

.label {
    color: #7a919d;
    font-size: 11px;
    font-weight: bold;
}

.btn {
    color: #3c464b;
    background-color: #f4f7f9;
    min-width: 80px;
    min-height: 40px;
    border: 0;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn:hover {
    background-color: #f0f3f5;
}

.btn--csv {
    background-color: #2dbf80;
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
}

.btn--csv:hover {
    background-color: rgb(38, 184, 121)
}

.error {
    font-family: 'Roboto', sans-serif;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 20px;
    background-color: white;
    width: 500px;
    height: 75px;
    margin: 0 auto;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
}

.error__icon {
    width: 20%;
    display: flex;
    justify-content: center;
}

.error__circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f33950;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
}

.error__alert {
    width: 60%;
}

.error__title {
    font-size: 20px;
    margin-bottom: 2px;
    color: #f33950;
}

.error__message {
    font-size: 12px;
    margin-bottom: 1px;
    color: #757575;
    font-weight: 400;
}
/* 
pre {
    font-family: 'Roboto', sans-serif;
    color: red;
    font-size: 11px;
    font-weight: bold;
    margin-right: 20px;
} */

.content {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
    /* height: 300px; */
    margin: 50px auto 20px auto;
    padding: 20px;
    /* box-shadow: 0px 0px 60px 0px rgba(194,194,194,0.5);  SHADOW VER 1 */ 
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    /* box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
    0 5px 15px 0 rgba(0,0,0,0.08);   TAILWIND SHADOW-LG */
}

.sign-forms {
    margin-top: 150px;
}

.content--form {
    margin: 150px auto;
}

.content__header {
    font-weight: 400;
    letter-spacing: -1px;
    font-size: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.content__form {
    width: 100%;
}

.content__label {
    display: block;
    margin-bottom: 5px;
}

.content__input {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px 5px
}

.content__textarea {
    width: 100%;
    margin-bottom: 10px;
    height: 120px;
    resize: none;

}

.content__select {
    padding: 10px 5px;
    width: 100%;
}

.content__btn {
    height: 40px;
    border-radius: 5px;
    width: 100%;
    margin: 10px 0 20px 0;
}

.content__btn--add {
    width: 100%;
}

.content__note {
    font-size: 12px;
    position: relative;
}
/* 
.content__note::before {
    content: '';
    position: absolute;
    width: 100%;
    top: -15px;
    height: 1px;
    background-color: #f0f3f5;
    margin: 0 auto;
} */

.content__labels {
    display: flex;
}

.labels__container--regin {
    width: 50%;
}


.labels__container--select {
    width: 30%;
}

.labels__container {
    width: 70%;
}


.content__labels div:first-child {
    margin-right: 10px;
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}