* {
    margin: 0;
}

html {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

header {
    display: flex;
    padding: 15px 20px 10px 20px;
    border-bottom: 1px solid black;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #f9fafb;
    padding: 20px;
}


.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.active {
    color: black !important;
}

.text-logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-logo-wrapper>.brand-name {
    margin-top: -10px;
    margin-bottom: -15px;
}

.text-logo-wrapper>p {
    font-size: 12px;
    color: rgb(100, 100, 100);
}

.navigation {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.navigation>a {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: gray;
}

.navigation>a:hover {
    color: black;
}

.login-form {
    padding: 30px;
    background-color: white;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    max-width: 420px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
}

.login-form-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.header-image>img {
    width: 80px;
}

.text-header-image-wrapper {
    margin-top: -2px;
    display: flex;
    flex-direction: column;
}

.text-header-image-wrapper>.brand-name {
    margin-left: -1px;
    font-size: 36px;
}

.text-header-image-wrapper>p {
    margin-top: -15px;
    font-size: 13px;
}

.text-header-wrapper {
    text-align: center;
}

.text-header-wrapper>h1 {
    font-size: 24px;
}

.text-header-wrapper>p {
    margin-top: -5px;
    font-size: 12px;
}

.login-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.login-form-main {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.input-wrapper {
    margin-top: 10px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-wrapper>input {
    font-size: 14px;
    border: 1px solid black;
    border-radius: 6px;
    padding: 10px 14px;
    transition: all 0.2s ease;
}
.input-wrapper>input:focus {
    outline: none;
    background-color: #fafafa;
}

.login-form-main>button {
    border: 1px solid black;
    border-radius: 8px;
    padding: 12px 20px;
    background-color: black;
    color: white;
    margin-top: 15px;
    font-size: 16px;
    transition: all 0.2s ease;
}
.login-form-main>button:hover {
    cursor: pointer;
    background-color: #222;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 1);
}

.pemisah {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: #666;
    /* Warna teks */
    margin: 20px 0;
}

.pemisah::before,
.pemisah::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
    /* Bentuk dan warna garis */
}

.pemisah:not(:empty)::before {
    margin-right: .5em;
    /* Jarak garis kiri ke teks */
}

.pemisah:not(:empty)::after {
    margin-left: .5em;
    /* Jarak garis kanan ke teks */
}

.google-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google-button-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 8px;
    background-color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}
.google-button-wrapper:hover {
    background-color: #fafafa;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 1);
}

.google-button-wrapper>img {
    margin-right: 20px;
    width: 24px;
    height: 24px;
}

.login-form-footer {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
}

.login-form-footer>p>a {
    color: black;
}

footer {
    background-color: black;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer>p {
    color: white;
}

/* 1. MOBILE (Ponsel Standar - Gaya Desain Mobile First) */
@media (max-width: 575px) {
    .logo>img {
        width: 32px;
        height: auto;
    }

    .text-logo-wrapper {
        height: 100%;
    }

    .text-logo-wrapper>.brand-name {
        font-size: 16px;
        margin-top: -15px;
    }

    .text-logo-wrapper>p {
        display: none;
    }

    .navigation>a {
        font-size: 14px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .login-form {
        width: 80%;
    }

    footer>p {
        font-size: 12px;
        text-align: center;
    }

    /* Tulis gaya CSS untuk layar sangat kecil di sini */
}

/* 2. LARGE MOBILE & SMALL TABLET (Ponsel besar / Tablet kecil) */
@media (min-width: 576px) {
    /* Tulis gaya CSS untuk perangkat dengan lebar minimal 576px di sini */
}

/* 3. TABLET (Tablet standar) */
@media (min-width: 768px) {
    /* Tulis gaya CSS untuk perangkat tablet di sini */
}