*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.navbar{
    width: 100%;
    background-color: white;
    border-bottom: 1px solid rgb(180, 210, 180);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
}

.nav-brand{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo{
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-brand label{
    font-size: 22px;
    font-weight: bold;
    color: rgb(80, 120, 80);
    cursor: default;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a{
    text-decoration: none;
    font-size: 14px;
    color: rgb(80, 120, 80);
}

.nav-links a:hover{
    text-decoration: underline;
}

.nav-register{
    background-color: rgb(119, 158, 120);
    color: white !important;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-register:hover{
    background-color: rgb(95, 135, 96) !important;
    text-decoration: none !important;
}

.main-container{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 80px;
}

.box1 img{
    height: 340px;
    object-fit: contain;
}

.box2{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.box2 h1{
    font-size: 48px;
    color: rgb(80, 120, 80);
    line-height: 1.2;
}

.box2 p{
    font-size: 16px;
    color: rgb(100, 140, 100);
    max-width: 380px;
    line-height: 1.6;
}

.btn-register{
    display: inline-block;
    background-color: rgb(119, 158, 120);
    color: white;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-register:hover{
    background-color: rgb(95, 135, 96);
    transform: translateY(-2px);
}