* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

header {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.logo, .logo-right {
    height: 50px;
}

.container {
    width: 100%;
    height: 100vh;
    /* background-image: linear-gradient(rgba(0,0,50,0.8),rgba(0,0,50,0.8)), url('https://newinti.edu.my/wp-content/uploads/2018/01/mbals.jpg');
    background-position: center;
    background-size: cover;
    position: relative; */

}

.top-section {
    height: 50%;
    background-image: url('https://newinti.edu.my/wp-content/uploads/2018/01/mbals.jpg');
    background-size: cover;
    background-position: center;
}

.bottom_section {
    height: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 50px 60px 70px;
    text-align: center;
    border: 2px solid #e4e3f18a;
    border-radius: 10px;
}

.form-box h1 {
    font-size: 30px;
    margin-bottom: 60px;
    color: #3c00a0;
    position: relative;
}

.form-box h1::after {
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #3c00a0;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%);
}

.input-field {
    background: #eaeaea;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
}

input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}

.input-field i {
    margin-left: 15px;
    color: #999;
}

.btn-field {
    width: 100%;
    display: flex;
    justify-content:space-between;

}

.btn-field button {
    flex-basis: 48%;
    background: #3c00a0;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}

.input-group {
    height: 280px;
}

.btn-field button.disable {
    background: #eaeaea;
    color: #555;

}

.error-message {
    display: block;
    font-size: 12px;
    color: red;
    margin-top: -10px;
    margin-bottom: 10px;
}

input:focus {
    background: #eaeaea;
    border: none;
}