* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    width: 53%;
    height: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.left-section {
    background-color: #fff;
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* border-right: 2px solid rgb(62, 1, 1); */
    /* border-radius: 0 10px 10px 0; */
}

.left-section h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003a70;
}

.left-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003a70;
}

.left-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003a70;
}

.left-section h4 {
    font-size: 1em;
    margin-bottom: 20px;
    color: rgb(62, 1, 1);
    /* color: #003a70; */
}

.left-section h5 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003a70;
}

.left-section h6 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #003a70;
}

.left-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
}

.illustration img {
    max-width: 100%;
}

.bg-right-default {
    /* background-color: rgb(20, 4, 90); */
    /* background-color: rgb(62, 1, 1); */
    background-color: darksalmon;
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
}

.bg-right-maroon {
    /* background-color: rgb(20, 4, 90); */
    background-color: rgb(62, 1, 1);
    /* background-color: darksalmon; */
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
}

.bg-right-navy {
    background-color: rgb(20, 4, 90);
    /* background-color: rgb(62, 1, 1); */
    /* background-color: darksalmon; */
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
}

.bg-right-gradasi-maroon {
    /* background-color: rgb(20, 4, 90); */
    /* background-color: rgb(62, 1, 1); */
    /* background-color: darksalmon; */
    background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1));
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
}

.bg-right-gradasi-default {
    /* background-color: rgb(20, 4, 90); */
    /* background-color: rgb(62, 1, 1); */
    /* background-color: darksalmon; */
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white);
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
}

.bg-right-gradasi-default2 {
    /* background-color: rgb(20, 4, 90); */
    /* background-color: rgb(62, 1, 1); */
    /* background-color: darksalmon; */
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white);
}

.bg-right-gradasi-navy {
    /* background-color: rgb(20, 4, 90); */
    /* background-color: rgb(62, 1, 1); */
    /* background-color: darksalmon; */
    /* background: linear-gradient(to bottom, darksalmon, rgb(62, 1, 1)); */
    /* background: linear-gradient(to bottom, #f0658e, rgb(236, 135, 167), white); */
    /* background: linear-gradient(to bottom, #f8b6a8, #f5bdb2, white); */
    background: linear-gradient(to bottom, #011c44, #343b8e, white);
}

.right-section {
    padding: 50px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-left: 3px solid #f0f2f5; */
    /* border-radius: 10px 0 0 10px; */
}

.form-container {
    width: 100%;
    max-width: 300px;
}

.logo img {
    display: block;
    margin: 0 auto 50px;
    width: 150px;
    height: 150px;
}

.form-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.form-tabs a {
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.form-tabs a.active {
    border-color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f0f2f5;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1c7ed6;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 20px;
}

button:hover {
    background-color: #0056b3;
}

.forgot-password {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
}

.social-login p {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.social-btn {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.google {
    background-color: #db4437;
}

.social-btn.linkedin {
    background-color: #0077b5;
}

.panel {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.gear-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.color-options {
    display: none;
    flex-direction: column;
    margin-top: 10px;
}

.color-option {
    width: 24px;
    height: 24px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 50%;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 20px;
    }

    .form-container {
        width: 100%;
        /* padding: 0 20px; */
    }
}

@media (max-width: 480px) {
    .right-section {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 20px;
    }

    .form-container {
        width: 100%;
        /* padding: 0 10px; */
    }

    .logo img {
        width: 150px;
        height: 150px;
    }
}

.text-color-red {
    background-color: red;
}

.text-color-green {
    background-color: green;
}

.text-color-blue {
    background-color: blue;
}

.text-color-yellow {
    background-color: yellow;
}

.text-color-purple {
    background-color: purple;
}