:root {
    --primary-bg-color2 : #1a2d7ef1;
    --yellow-color : #F7C327;
    --secondary-color : rgb(96, 112, 128);
    --secondary-color2 : #3B3B3B;
    --success-color : #5bbd6a;
}

*{
    padding: 0;
    margin: 0;
    font-size: 12px;
}


body {
    box-sizing: border-box;
    
}

.main-page {
    height: 100vh;
}

.main-page .atas img {
    width: 100px;
}

.main-page :is(.tengah, .bawah){
    padding-inline: 1.5rem;
}
.main-page .tengah .logo img {
    width: 44px;
}

.main-page .tengah .deskripsi :is(h3, p){
    margin-bottom: unset;
    line-height: 1.25;
}

.main-page .tengah .deskripsi p {
    font-size: 12px;
}

.myform {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-bg-color2);
    padding-bottom: 0.4rem;
    transition: border-color .3s;
    -webkit-transition: border-color .3s;
    -moz-transition: border-color .3s;
    -ms-transition: border-color .3s;
    -o-transition: border-color .3s;
}

.myform :focus {
    border-bottom: 2px solid var(--yellow-color);
}
.myform img {
    height: 32px;
}
.myform .form-inputan {
    border: unset;
    outline: none;
}

.myform .form-inputan:focus {
    outline: none;
    border: none;
    font-weight: 600;
    caret-color: var(--yellow-color);
}

.toogle-password {
    border: unset;
    outline: unset;
    background-color: unset;
    display: none;
}

.myform .toogle-password i {
    font-size: 1rem;
    color: var(--primary-bg-color2);
}

.btn-submit {
    border: unset;
    outline: unset;
    width: 100%;
    padding: 0.75rem 2rem;
    background: var(--primary-bg-color2);
    border-radius: 18px;
    font-size: 1.4rem;
    color: #fff;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}
/* LINE  */
.line-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.line-container::before,
.line-container::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px solid var(--secondary-color2);
}

.line-container::before {
    margin-right: 10px;
}

.line-container::after {
    margin-left: 10px;
}

.line-text {
    white-space: nowrap;
}


/* forgot password */
.forgot-password {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--primary-bg-color2);
    font-weight: 600;
 
}

@media (min-width: 360px) {
    .container-sm {
        max-width: 440px;
    }

}