/* Public Page Styles for GotGame Tech */
body {
    background-color: #f9f9f9;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
}

.container {
    max-width: 600px;
    margin-top: 50px;
    border-top: 5px solid #B3A369; /* Tech Gold Accent */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
}

/* Button - Navy Blue with Gold Hover */
.btn, button, input[type="submit"] {
    background-color: #003057 !important; /* Navy Blue */
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover, button:hover {
    background-color: #B3A369 !important; /* Tech Gold */
    cursor: pointer;
}

/* Links */
a {
    color: #003057;
    text-decoration: underline;
}

a:hover {
    color: #B3A369;
}

/* Form Inputs */
input[type="text"], input[type="email"], select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

input:focus {
    border-color: #B3A369;
    outline: none;
    box-shadow: 0 0 0 2px rgba(179, 163, 105, 0.2);
}