body {
    display: flex;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #202124;
    background: #ffffff;
    margin: 0;
    min-height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 100%;
    min-width: 100vw;
    min-width: 100dvw;
    overflow-x: hidden;
}

.page {
    display: flex;
    flex-direction: column;
    height: inherit;
    width: 1380px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #95c121;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: underline;
    font-weight: 500;
}

a.url-underline {
    text-decoration: underline;
    color: #214EC1;
}

a.url-underline:hover {
    opacity: 0.8;
}

header {
    padding: 60px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    margin: auto;
}

.logo img {
    max-height: 80px;
    object-fit: contain;
    padding-bottom: 5px;
    padding-top: 5px;
}

.title {
    padding: 60px 0;
    font-weight: 700;
    font-size: 30px;
}

.dynamic-content {
    display: flex;
    padding: 0 0 60px 0;
}

#login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 6px;
    background: #ebebeb;
    margin: auto;
    padding: 15px;
}

.input-container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 8px;
}

.input-container label {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.input-container input {
    border: 1px solid #cbcbcb;
    border-radius: 6px;
    padding: 11px 15px;
    z-index: 1;
    outline-width: 0;
    min-width: 250px;
}

.input-container input.error {
    border: 1px solid #b61515;
}

.button-container {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

button {
    display: flex;
    justify-content: center;
    border: none;
    text-align: center;
    background-color: #214EC1;
    color: #ffffff;
    cursor: pointer;
    height: 43px;
    line-height: 16px;
    padding: 12px 50px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

button:hover {
    opacity: 0.8;
}

.table {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 8px;
    margin: auto 0;
    width: 100%;
}

.table .column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table .column .column-label {
    font-weight: 700;
}

footer {
    padding: 60px 0;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #cbcbcb;
}

.toaster {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.toaster.active {
    opacity: 1;
}

.toaster .toaster-txt {
    position: fixed;
    bottom: 20px;
    right: 50px;
    border-radius: 6px;
    color: #ffffff;
    background: #15b622;
    padding: 15px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.toaster.active .toaster-txt {
    bottom: 50px;
    opacity: 1;
}

.toaster .toaster-txt.success {
    background: #15b622;
}

.toaster .toaster-txt.error {
    background: #b61515;
}

/* [Media Query] 1200px */
@media only screen and (max-width: 1200px) {

    .page {
        width: 95%;
    }

}

/* [Media Query] 992px */
@media only screen and (max-width: 992px) {

    .table {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* [Media Query] 768px */
@media only screen and (max-width: 768px) {

    .logo img {
        width: 100%;
    }

    .table {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* [Media Query] 575px */
@media only screen and (max-width: 575px) {

    .page {
        width: 90%;
    }

    header {
        padding: 30px 0;
    }

    .logo img {
        max-height: 60px;
    }

    .title {
        padding: 30px 0;
        font-size: 24px;
    }

    .dynamic-content {
        padding: 0 0 30px 0;
    }

    #login {
        margin: 0;
        width: 100%;
    }

    .input-container {
        grid-template-columns: 1fr;
    }

    .input-container input {
        min-width: 150px;
    }

    .table {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        padding: 30px 0;
    }


    .toaster .toaster-txt {
        left: 50px;
        right: 50px;
    }

}