* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: flex-start; /* Left-align the main block on the screen */
    align-items: center; /* Center vertically */
    padding-left: 10%; /* Position content towards the left with a nice margin */
    color: #121212;
}

.welcome-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: flex-start;
}

.content-box {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left-align everything inside the content box */
    text-align: left;
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.logo-img {
    height: 110px; /* Increased eagle head logo size */
    width: auto;
    display: block;
}

.welcome-title {
    font-size: 5.5rem; /* Increased headline size */
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.welcome-subtitle {
    font-size: 2rem; /* Increased subtitle size */
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.button-group {
    display: flex;
    gap: 2rem; /* Spacing between the two buttons */
}

.btn-login, .btn-register {
    height: 66px; /* Increased button height */
    border-radius: 33px; /* Pill shapes */
    font-size: 1.35rem; /* Increased button text size */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    outline: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.btn-login {
    width: 260px; /* Increased button width */
    background-color: #1e6b2c; /* Forest Green fill */
    color: #ffffff;
}

.btn-login:hover {
    background-color: #175322;
    transform: translateY(-1px);
}

.btn-register {
    width: 260px; /* Increased button width */
    background-color: transparent;
    color: #1e6b2c;
    border: 2.5px solid #1e6b2c; /* Slightly thicker outline */
}

.btn-register:hover {
    background-color: #f4faf5;
    transform: translateY(-1px);
}

/* Responsive styles for mobile screens */
@media (max-width: 768px) {
    body {
        justify-content: center;
        padding-left: 0;
    }

    .welcome-container {
        justify-content: center; /* Center on mobile */
        padding: 0 20px;
    }
    
    .content-box {
        align-items: center; /* Center content on mobile */
        text-align: center;
    }
    
    .welcome-title {
        font-size: 3.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.35rem;
        margin-bottom: 2.5rem;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-login, .btn-register {
        width: 100%;
    }
}
