body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container {
    margin: 0 auto;
    width: 60%;
}

.top-phone-number {
    padding: 20px;
    width: 100%;
    text-align: right;
}

.logo {
    text-align: center;
}

.content {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    margin: 50px auto;
    padding: 20px 20px;
}

.content_2 {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
    margin: 50px auto;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.content_2 .desc {
    padding: 0 250px;
}

.content_2 .desc p {
    font-size: 14px;
}

.tab {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #eee;
}

.tab button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    color: black;
}

.tab .active {
    border-bottom: 2px solid #ec1c24;
    color: #ec1c24;
}

.form-container {
    padding: 20px 40px;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    padding: 0 30px;
}

.input-group label.icon {
    top: 50%;
    left: 10px;
}

.input-group input {
    width: 90%;
    padding: 10px;
    border: unset;
    border-radius: 4px;
    font-size: 12px;
    background-color: #efefef;
}

.input-group .help-text {
    display: flex;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.input-group .help-text a {
    text-decoration: none;
    color: #999;
}

.input-group .forgot-password {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
}

.input-group .forgot-password a {
    color: #ec1c24;
    text-decoration: none;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #ec1c24;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.m2 {
    margin: 5px 0;
}

.mb-3 {
    margin-bottom: 30px;
}

.cursor-bg {
    background-color: #efefef;
    border-radius: 50px;
    padding: 6px;
    width: 20px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #333;
    margin-top: 20px;
    padding: 10px 0;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.back-tab {
    width: 100%;
}

.back-tab:hover {
    cursor: pointer;
}


.back-tab .arrow-wrapper {
    background-color: #efefef;
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 50px;
}

.mt-2 {
    margin-top: 20px;
}

.alert {
    background-color: #fcdbdb;
    border: 1px solid #ce3245;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.alert p {
    color: #ce3245;
    text-align: center;
    margin: 0;
    font-size: 11px;
    font-weight: 500;
}

.success {
    background-color: #dbfcdb;
    border: 1px solid #3dda7c;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.success p {
    color: #3dda7c;
    text-align: center;
    margin: 0;
    font-size: 11px;
    font-weight: 500;
}

.mb-2 {
    margin-bottom: 20px;
}

.m0 {
    margin: 0;
}

.contact-wrapper {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    flex-direction: column;
    width: 50%;
}

.contact-item img {
    margin-right: 10px;
}

.contact-item p {
    margin: 15px 0;
    font-size: 12px;
    height: 60px;
}

.text-center {
    text-align: center;
}

.text-wrapper {
    display: flex;
    justify-content: space-between;
}

.text-wrapper .left-text {
    width: 48%;
    text-align: justify;
}

.text-wrapper .left-text p {
    font-size: 12px;
}

.text-wrapper .right-text {
    width: 48%;
    text-align: justify;
}

.text-wrapper .right-text p {
    font-size: 12px;
}

.text-wrapper .right-text ol li {
    margin-bottom: 10px;
    font-size: 12px;
}
.customer-detail{
    display: none;
}
.customer-detail .border-r{
    border: 10px solid #efefef;
    border-radius: 50%;
}
.customer-detail .margin-l{
    margin-left: -110px;
}

.help-text:hover:not(.no-hover) + .customer-detail{
    display: block;
}
.customer-detail.show{
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* ---- Mobil ---- */

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
    }

    .top-phone-number {
        display: none;
    }

    .logo {
        margin-top: 60px;
    }
    .content{
        width: auto;
        margin: 50px 20px;
    }
    .content_2{
        width: auto;
        margin: 50px 20px;
    }
    .form-container{
        padding: 20px 20px;
    }
    .bottom-phone-number{
        text-align: center;
    }
    .footer-mobile {
        text-align: center;
        font-size: 12px;
        color: #333;
        margin-top: 0px;
        padding: 10px 0;
    }
    
    .footer-mobile a {
        color: #333;
        text-decoration: none;
        margin: 0 -2px;
        font-size: 9px;
    }
    
    .footer-mobile a:hover {
        text-decoration: underline;
    }
    .footer{
        display: none;
    }
    .text-wrapper{
        display: none;
    }
    .text-wrapper-mobile .text{
        height: 350px;
        padding: 10px;
        overflow-y: scroll;
        text-align: justify;
    }
    .content_2 .desc {
        padding: 0;
    }
    
}

@media only screen and (min-width: 768px) {
    .bottom-phone-number{
        display: none;
    }
    .footer-mobile {
        display: none;
    }
    .text-wrapper-mobile{
        display: none;
    }
}