.signInPage {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FAFBFD;
    display: flex;
    justify-content: center;
    padding: 5% 0;
}

.signInContainer {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    user-select: none;
}

.signInImage {
    display: flex;
    justify-content: center;
}

.signInImage img {
    width: 150px;
}

.signInContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.signInHeader {
    font-family: Kanit;
    color: #122B46;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
}

.signInCreateAccount {
    color: #5A5A5A;
    font-size: 20px;
    font-family: Sarabun;
    font-weight: normal;
    font-style: normal;
    cursor: pointer;
}

.signInInputContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    user-select: none;
}

.signInInputBox {
    display: block;
}

.signInInputBox svg.icon {
    width: 20px;
    height: 20px;
    position: absolute;
    padding: 10px;
    color: #546E7A;
}

.signInInputBox svg.operation {
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: -40px;
    padding: 10px;
    color: #546E7A;
    cursor: pointer;
    transition: .2s;
}

.signInInputBox svg.operation:hover {
    color: #00B0FF;
}

.signInInput {
    padding: 10px 10px 10px 40px;
    background-color: #fff;
    border: 1px solid #E7E9EC;
    box-shadow: none;
    border-radius: 6px;
    font-size: 16px;
    color: #333333;
    width: 100%;
}

.signInInput::-ms-reveal, .signInInput::-ms-clear {
    display: none;
}

.signInInput::placeholder {
    color: #B0BEC5;
    opacity: 1;
}

.signInButton {
    background-color: #385DFF;
    border-color: #385DFF;
    color: #fff;
    border-radius: 100px;
    box-shadow: none;
    text-shadow: none;
    height: auto;
    padding: 10px 30px;
    transition: all linear .2s;
    float: none;
    width: 100%;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.signInButton:hover {
    background-color: #1E42DD;
}

.signInForgotPassword {
    color: #5A5A5A;
    font-size: 20px;
    font-family: Sarabun;
    font-weight: normal;
    font-style: normal;
    cursor: pointer;
    font-weight: bold;
}

.signInRemember {
    display: flex;
    gap: 5px;
    color: #5A5A5A;
    font-size: 20px;
    font-family: Sarabun;
    font-style: normal;
    cursor: pointer;
    font-weight: bold;
}

.signInTerms {
    color: #333333;
    text-align: center;
    font-size: 20px;
    font-family: Sarabun;
    font-style: normal;
}

.signInTerms a {
    color: #5A5A5A;
    font-weight: bold;
    cursor: pointer;
}