* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #999;
    font-family: 'Kanit', sans-serif;
}

h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.left h3 {
    color: #b0c1d2;
}

.right h3 {
    color: #b1d2b0;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.left {
    align-items: center;
    background-color: #000f1f;
    flex: 1;
    height: 100vh;
    justify-content: center;
}

.right {
    align-items: center;
    background-color: #031005;
    flex: 1;
    height: 100vh;
    justify-content: center;
}

.left div, .left div label, .right div {
    align-items: center;
    color: #b0c1d2;
    display: flex;
    flex-direction: column;
    font-family: 'Kanit', sans-serif;
    justify-content: center;
}

label {
    display: block;
    font-family: 'Kanit', sans-serif;
    padding: 20px 20px 10px 20px;
    width: 100%;
}

input[type="text"], input[type="url"], input[type="submit"], button, textarea {
    border: 1px solid #ccc;
    border-radius: 25px;
    font-family: 'Kanit', sans-serif;
    margin-bottom: 10px;
    padding: 10px 18px;
    text-align: center;
    width: 80%;
}

.left input[type="text"], .left input[type="url"], .left input[type="submit"] {
    background-color: #000f1f;
    border: 3px solid #667788;
    color: #b0c1d2;
}

button, input[type="submit"] {
    margin-top: 40px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease 0s !important;
    width: 50% !important;
}

.right input[type="text"], .right input[type="url"], .right input[type="submit"], .right button, .right textarea {
    background-color: #031005;
    border: 3px solid #678866;
    color: #b1d2b0;
}

textarea {
    height: 600px;
    margin-top: 50px;
    text-align: left;
}





/* Hide scrollbar for Chrome, Safari and Opera */
textarea::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

/* Hide scrollbar for IE, Edge and Firefox */
textarea {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Optional: Adding a padding can make it more usable without a visible scrollbar */
textarea {
    padding-right: 1em;
}

button:hover {
    background-color: #678866;
    color: #031005;
    cursor: pointer;
}

.submit:hover {
    background-color: #667788 !important;
    color: #000f1f !important;
    cursor: pointer;
}




/* more custom shid */

nav ul {
    background-color: #b9cdda;
    font-size: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    background-color: #b9cdda;
    color: #000f1f;
    display: inline-block;
    font-size: 1rem;
    padding: 20px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #000f1f;
    color: #b9cdda;
    cursor: pointer;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    width: 100%;
}

.ctrl-btn {
    background-color: #b9cdda;
    border: 1px solid #000f1f;
    color: #000f1f;
    font-size: 1rem;
    margin: 0 10px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.ctrl-btn:hover {
    background-color: #000f1f;
    color: #b9cdda;
    cursor: pointer;
}