html{
    height: 100%;
}
body {
    margin: 0;
    overflow-y: hidden;
    font-family: "Noto Sans Thai", sans-serif;
}

.center-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    gap: 10px;
    overflow-y: auto;
    margin-bottom: 80px;
}

.main-content {
    width: 100%;
    background-color: white;
    padding: 25px;
    gap: 18px;
    height: 100%;
    box-sizing: border-box;
}

.btn-login {
    background-color: var(--color-base);
    border: none;
    color: white;
    padding: 2px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    font-weight: bolder;
}
.login-input-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.input-container-content {
    display: flex;
    flex-direction: row;
    border: 1px solid var(--color-base);
    padding: 4px 10px;
    gap: 5px;
    border-radius: 10px;
}
.input-container {
    width: 100%;
}
.input-container label{
    font-size: 1rem;
}

.input-container input {
    border: 0;
    font-size: 1rem;
}

.input-container input::placeholder {
    color: #a9a9a9;
    font-weight: bold;
}

.input-container input:focus,
.input-container input:focus-visible {
    border: 0;
    outline: none;
}

.divider {
    width: 2px;
    background-color: var(--color-base);
}

p {
    margin: 0;
    margin-block: 0;
}

.input-container img {
    width: 18px;
    height: 18px;
}

.header-title p {
    text-align: center;
}

.header-title {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.bottom-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.horizontal-divider {
    height: 2px;
    width: 100%;
    background-color: var(--color-base);
}

.s-login-title {
    color: var(--color-base);
    font-size: 1.25rem;
    font-weight: bold;
}

.s-or {
    color: #848884;
    font-weight: bold;
}

.a-register {
    color: var(--color-base);
    font-weight: bold;
}

.bottom-container .msg {
    color: #808080;
    font-size: 0.75rem;
}

.bottom-container .title-logo {
    display: flex;
    flex-direction: row;
    gap: 5px;
    color: #71797e;
}
.bank-name{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .container {
        justify-content: unset;

    }
    

    .main-content {
        min-width: 80%;
    }
}

@media (max-height: 668px) {
    .logo {
        height: 100px;
        width: 100px;
    }

    .header-title {
        font-size: 1rem;
    }
}