@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 20px 0;
    background-color: transparent; /* Allows your main website background to show through */
    color: #111;
}

.tracking-container {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #eaeaea; /* Very subtle border */
}

h2 {
    margin-top: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
}

input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ccc;
    border-radius: 0; /* Sharp corners to match Stonehill styling */
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: #d36e18; /* Stonehill Amber accent on click */
}

/* Matches the "BECOME A RESELLER" button */
.btn-primary {
    width: 100%;
    padding: 16px;
    background-color: #d36e18; 
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #b55d14; /* Slightly darker on hover */
}

/* Matches the "SEE MORE" button aesthetic (inverted for visibility on white) */
.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 24px;
    background-color: transparent;
    color: #111;
    text-decoration: none;
    border: 2px solid #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #111;
    color: #fff;
}

.hidden { 
    display: none; 
}

#resultArea {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.success-box {
    text-align: center;
}

.success-text {
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.error { 
    color: #d9534f; 
    font-weight: 700; 
    font-size: 13px; 
    text-align: center; 
    letter-spacing: 0.5px;
}

.processing { 
    color: #d36e18; 
    font-weight: 700; 
    font-size: 13px; 
    text-align: center; 
    letter-spacing: 0.5px;
}