body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #d4c8b3;
    text-align: center;
}

.main-wrapper {
    width: 1039px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* HEADER SECTION */
.header-container {
    position: relative;
    width: 1039px;
    height: 438px;
}

.header-img {
    width: 1039px;
    height: 438px;
    display: block;
}

.navbar {
    position: absolute;
    top: 20px; 
    right: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.signup-btn-top {
    width: 133px;
    height: 39px;
    background: url('../images/orange-btn-signup.png') no-repeat;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    position: absolute;
    top: 140px; 
    width: 100%;
}

.btn-get-started {
    width: 240px;
    height: 47px;
    background: url('../images/orange-btn-getstarted.png') no-repeat;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

/* CONTENT AREA */
.content-body {
    background: #d4c8b3 url('../images/bg.jpeg') repeat-y center top;
    width: 1039px;
}

.section-divider {
    width: 1039px;
    height: 29px;
    display: block;
}

/* THEMES */
.themes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.theme-card {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-card img.main-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-banner {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 232px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.boys-bg { background: url('../images/boystheme.png') no-repeat; }
.girls-bg { background: url('../images/girlstheme.png') no-repeat; }

/* AUTH SECTION */
.auth-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #444;
    margin: 40px 0 10px 0;
}

.auth {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 60px 20px;
}

.auth-box {
    width: 438px;
    height: 279px;
    position: relative;
    box-sizing: border-box;
}

.signup-container { 
    background: url('../images/signup.png') no-repeat; 
}
.login-container { 
    background: url('../images/login.png') no-repeat;
}

.auth-box h3 {
    margin: 25px 0 10px 0; /* Pushes the header text up */
    font-size: 17px;
    color: #333;
}

.auth-box input {
    width: 280px;
    padding: 9px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.forgot-pw {
    display: block;
    text-align: right;
    width: 320px;
    font-size: 11px;
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    margin: 2px auto 8px auto; /* Fine-tuned for that bottom right spot */
}

/* Auth Buttons */
.btn-auth-signup {
    width: 196px;
    height: 46px;
    background: url('../images/green-btn-signup.png') no-repeat;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 8px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-auth-login {
    width: 190px;
    height: 48px;
    background: url('../images/blue-btn-login.png') no-repeat;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER */
footer {
    width: 1039px;
    height: 170px;
    background: url('../images/footer.png') no-repeat center center;
    background-size: 1039px 170px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25px;
    box-sizing: border-box;
    margin-top: -1px;
}

footer a { color: white; text-decoration: none; font-size: 14px; }