* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Hapus min-width dan min-height fixed agar responsif */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh; /* Pastikan body minimal setinggi layar */
    display: flex;
    flex-direction: column; /* Mengatur header dan main menumpuk */
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1E374E;
    width: 100%;
    height: 147px;
    padding: 0 40px;
    position: sticky; /* Kunci utamanya */
    top: 0;           /* Menempel di posisi paling atas layar */
    z-index: 1000;    /* Memastikan header selalu di atas konten lain */
}

header a {
    display: inline-block;
}

.logo {
    display: block;
    height: 126.65px;
    width: 444.59px;
    object-fit: contain;
}

main {
    display: flex;
    /* Tambahkan margin-top sebesar tinggi header (147px) */
    /* Gunakan min-height agar layout tidak berantakan jika konten sedikit */
    min-height: calc(100vh - 147px);
}

.hero {
    flex: 1;
}

.isi {
    flex: 1; /* Mengambil 50% sisanya */
    background-color: #1E374E; /* Warna Navy gelap */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center
}

.hiro {
    display: block;
    font-weight: bold;
    font-size: 88.86px;
    color: black;
    line-height: 1.2;
    width: 60px;
    margin-left: 80px;
    margin-top: 55px;
}

.hiro span {
    color: #1D3584;
}

form {
    gap: 30px;
    font-size: 50px;
    margin-right: 90px;
    margin-bottom: 100px;
    height: 100%;
}

form label{
    gap: 30px;
    font-weight: 400;
    font-size: 35px;
}

form p {
    font-weight: 600;
    font-size: 70px;
    margin-left: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center; 
}

form .regtex {
    font-weight: normal;
    font-size: 30px;
}

form .copy {
    font-weight: normal;
    font-size: 15px;
}

input[type="text"] {
    border: none;  
    border-radius: 50px;
    width: 480px;     /* Sudut melengkung */
    padding: 25px;         /* Ruang dalam agar teks tidak mepet */
    outline: none;         /* Menghapus garis biru default browser */
    transition: 0.3s;   
    font-size: 15px;   /* Efek halus saat diklik */
}

input[type="password"] {
    border: none;
    border-radius: 50px;
    width: 480px;   /* Sudut melengkung */
    padding: 25px;         /* Ruang dalam agar teks tidak mepet */
    outline: none;         /* Menghapus garis biru default browser */
    transition: 0.3s;
    font-size: 15px      /* Efek halus saat diklik */
}

form button {
    margin-left: 130px;
    margin-top: 50px;
    align-items: center;
    padding: 20px 20px; 
    width: 250px;
    border: none;
    border-radius: 50px; /* Gunakan 8px untuk modern, 50px untuk model pil */
    
    /* Visual */
    background-color: #1D3584; /* Sesuaikan dengan warna brand kamu */
    color: white;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

form button:hover {
    background-color: #192b66;
    color: gray;
}

.regi {
    margin-top: -150px;
    margin-bottom: 100pxpx;
    cursor: pointer;
}
