:root {
    --color-bg: #F6F8F6;
    --color-surface: #FFFFFF;
    --color-text: #1E1F1E;
    --color-text-secondary: #6B7280;
    --color-primary: #38c190;
    --color-accent: #268765;
    --color-border: #E5E7EB;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.09);
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*,*::before, *::after{
    margin: 0; padding: 0; box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    background-color: var(--color-bg);
    color: var(--color-text);
}
img{
    max-width: 100%;
}
.header{
    width: 100%;
    padding: 15px 0;
    background-color: #FFFFFF;
}
.inner{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.home_uri{
    display: flex;
    align-items: end;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    color: var(--color-text);
    font-weight: 600;
}
.logo-login{
    width: auto;
    height: 30px;
}
.texthelp{
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
/* Form */
.form-auth{
    width: 100%;
    padding: 20px;
    background-color: var(--color-primary);
}
.innergrid{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.innleft{
    width: 100%;
    position: relative;
}
.cover-lapak{
    width: auto;
    height: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.inright{
    width: 100%;
    background-color: var(--color-surface);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 30px;
    height: max-content;
}
.form-title{
    display: block;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}
.input-group{
    position: relative;
    width: 100%;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 20px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    overflow: hidden;
}
.input-group input{
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
    padding: 0 15px;
    border-radius: var(--radius-sm);
}
.input-group input:focus{
    border: 1px solid var(--color-accent);
}
.icon-eye{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #999;
}
.icon-eye:hover{
    color: #777;
}
#sembunyipas{
    display: none;
}
.btn-mybtn-custom{
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    border: none;
    background-color: var(--color-primary);
    color: var(--color-surface);
    height: 40px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 400;
}
.text-small{
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-accent);
    text-decoration: none;
}
.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #777; /* warna garis */
}
.divider:not(:empty)::before {
    margin-right: 10px;
}
.divider:not(:empty)::after {
    margin-left: 10px;
}
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 1rem;
}
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: #4b4b4b;
    background: #ffffff;
    transition: 0.2s ease;
}
.btn-social i {
    font-size: 18px;
}
.btn-social:hover {
    background: #f5f5f5;
}
.btn-social.facebook {
    color: #1877f2;
    border-color: #d8e5fc;
}

.btn-social.google {
    color: #DB4437;
    border-color: #f2e0de;
}
/* Footer */
.footer {
    background: var(--color-bg);
    margin-top: 40px;
    font-family: Arial, sans-serif;
    color: #333;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
}
.footer h3 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #1B5E47; /* hijau dark */
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
    transition: 0.2s;
}
.footer ul li a:hover {
    color: #1B5E47;
}
.footer-logos img {
    width: 70px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid #ddd;
    background: #fff;
}
.social-links li i {
    margin-right: 6px;
    color: #1B5E47;
}

.footer-apps img {
    width: 110px;
    margin: 6px 0;
}

.footer-bottom {
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #555;
    background: #fafafa;
}

.footer-countries {
    margin-top: 5px;
    font-size: 13px;
    color: #777;
}
.text-center{
    text-align: center;
    display: block;
    width: 100%;
}
.text-center p{
    color: #555;
    font-size: 14px;
}
.texddd{
    color: var(--color-accent);
    text-decoration: none;
}

/* Responsive */
/* Lapto 14 inch */
@media(max-width: 1028px){
    .innergrid{
        grid-template-columns: 3fr 2fr;
    }
    .cover-lapak{
        height: 420px;
    }
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 780px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .innleft{
        display: none;
    }
    .inright{
        max-width: 380px;
        margin: 0 auto;
    }
    .innergrid{
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 580px) {
    .texthelp{
        display: none;
    }
    .inright{
        max-width: 100% !important;
        width: 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
