* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('../asset/images/bg-login.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 900px;
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.header-bar {
    background-color: #032210;
    color: #bea701;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 18px;
}

.section-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.school-name {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    color: #032210;
}

.btn {
    border-radius: 10px;
}

.login-info {
    background-color: #777779dc;
    padding: 15px;
    border-left: 5px solid #d9534f;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
}

.login-info span {
    font-weight: bold;
    color: #d9534f;
}

.btn-start {
    background-color: #032210;
    color: white;
    padding: 10px 60px;
    font-weight: bold;
    border: none;
}

.btn-start:hover {
    background-color: #bea701;
    ;
    color: #fff;
}

.btn-continue {
    background-color: #333;
    color: white;
    padding: 10px 30px;
    font-weight: bold;
    border: none;
}

.btn-continue:hover {
    background-color: #bea701;
    ;
}

.text-blue {
    color: #bea701;
    font-weight: bold;
}

.description {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    /* start from the left */
    text-align: left;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header img {
    height: 80px;
}

.header h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.online-application {
    background-color: #032210;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    background: #f2f2f2;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #d9534f;
    margin-bottom: 20px;
}

.form-section-title {
    background-color: #f8f8f8;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #c0392b;
    border-bottom: 2px solid #c0392b;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    font-size: 14px;
}

.form-control,
.form-select {
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    border: 2px #032210 solid;
}

/* change active border color */
.form-control:focus {
    border-color: #bea701;
    box-shadow: none;
}

.btn-submit {
    background-color: #2980b9;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: #1f6691;
    color: #fff;
}

.note {
    font-size: 14px;
    color: #555;
}

.deadline {
    color: #c0392b;
    font-weight: bold;
}

.link {
    color: #2980b9;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.instruction {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

/* PROGRAM STYLE */

.header {
    background-color: #032210;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    text-align: left;
}

.info-text {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
}

.info-text a {
    color: #2196F3;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.info-text span {
    color: red;
    font-weight: bold;
}

.section-title {
    text-align: center;
    color: #d9534f;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.table {
    margin-bottom: 20px;
}

.note {
    background-color: #f1f1f1;
    padding: 15px;
    border-left: 5px solid #2196F3;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.note span {
    color: red;
    font-weight: bold;
}

.btn-apply {
    background-color: #032210;
    color: #fff;
    padding: 10px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
}

.btn-apply:hover {
    background-color: #032210;
    color: #fff;
}