body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

header {
    background-color: teal;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

#logo {
    /* Add styling for your logo, e.g., width, height, etc. */
}

#company-name {
    color: white;
    font-size: 24px;
    /* Add additional styling for your company name */
    flex: 1;
}

.container {
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(rgba(0,0,50,0.8),rgba(0,0,50,0.8)), url("<?= base_url('assests/logo/background.jpg')?>");
    background-position: center;
    background-size: cover;
    position: relative;
}


.form-box {
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 50px 60px 70px;
    text-align: center;
}

.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color: teal;
    position: relative;
}

.form-box h1::after{
    content: ' ';
    width: 50px;
    height: 4px;
    border-radius: 3px;
    background: teal;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%);
}

.form-fields {
    background: #eaeaea;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}

.form-fields i{
    margin-left: 15px;
    color: #999;
}

.btn-fields {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-fields button{
    flex-basis: 48%;
    background: teal;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
}

.input-group{
    height: 160px;
}

.btn-fields button.disable {
    background: #eaeaea;
    color: #555;
}