body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    padding: 0;
    background: url("../img/login_bg.png") no-repeat;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

}

.login-section {
    background-color: #fff;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-header {
    margin-bottom: 40px;
    text-align: left;
}

.login-header h3 {
    font-size: 2.2rem;
    margin: 0;
    color: rgb(22, 22, 22);
    font-family: Montserrat;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: end;
    gap: 12px;
}

.decorative-bar {
    display: inline-block;
    width: 24px;
    height: 56px;
    background-color: black;
    margin-right: 10px;
}

.login-header p {
    color: #9C9C9C;
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.8;
    margin-top: 40px;
}

form {
    width: 100%;
    text-align: left;
}

.input-group {
    margin-bottom: 30px;
    width: 100%;
}

.input-group label {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    padding: 15px 10px;
    font-size: 1rem;
    width: calc(100% - 20px);
    border: none;
    background: rgb(240, 240, 240);
}

.input-group.terms {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    /* width: calc(100% - 20px); */
}

.input-group.terms input[type="checkbox"] {
    margin: 0px !important;
    margin-top: -11px !important;
    width: 20px;
    height: 20px;
}

.input-group.terms label {
    font-weight: normal;
    font-size: 14px;
    margin-left: 10px;
}

.input-group.terms a {
    color: rgb(71, 158, 131);
    text-decoration: none;
}

.input-group.terms a:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 15px 0;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: black;
}

.create-account {
    margin-top: 10px;
    text-align: right;
    color: #333333;
    font-family: Montserrat;
    cursor: pointer;
    font-size: 1.2rem;
}

.image-section {
    flex: 1;
    display: none;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        height: 1000px;
    }

    .login-box {
        padding: 0 20px;
    }

    .login-section {
        flex: 1;
        padding: 40px;
    }

    .image-section {
        display: block;
    }
}

@media (max-width: 767px) {
    .login-box {
        padding: 20px;
    }

    .login-header h3 {
        font-size: 1.5rem;
    }

    .input-group label {
        font-size: 16px;
    }

    .input-group input[type="text"],
    .input-group input[type="email"],
    .input-group input[type="password"] {
        padding: 12px 0px;
        font-size: 14px;
        width: calc(100% - 20px);
    }

    .login-button {
        font-size: 1.2rem;
        padding: 12px 0;
        width: calc(100% - 20px);
    }

    .create-account {
        font-size: 1rem;
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    /* .container {
        padding: 10px;
    } */

    .login-box {
        width: 100%;
        max-width: none;
    }

    .login-header h3 {
        font-size: 1.3rem;
    }

    .input-group label {
        font-size: 14px;
    }

    .input-group input[type="text"],
    .input-group input[type="email"],
    .input-group input[type="password"] {
        padding: 10px 0px;
        font-size: 12px;
        width: 100%;
    }


    .login-button {
        font-size: 1rem;
        padding: 10px 0;
        width:100%;
    }

    .create-account {
        font-size: 0.9rem;
        width: 100%;
    }
}