/* register.css */
.register-page {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate="fade-in"] {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Full-width Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo h1 {
    color: #1A3552;
    font-size: 24px;
    margin: 0;
    transition: color 0.3s ease;
}

.logo h1:hover {
    color: #6A0DAD;
}

/* Search Bar & Advertiser Image */
.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px;
    width: 200px;
    border: 1px solid #6A0DAD;
    border-radius: 5px 0 0 5px;
    background: #FFFFFF;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    border-color: #FFD700;
}

.search-bar button {
    padding: 8px 15px;
    background: #6A0DAD;
    color: #FFFFFF;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #FFD700;
    color: #333333;
}

.advertiser-banner img {
    width: 280px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #FFD700;
}

/* Authentication Buttons */
.auth-buttons button {
    padding: 8px 15px;
    border: 1px solid #6A0DAD;
    cursor: pointer;
    color: #6A0DAD;
    background: transparent;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-buttons button:hover {
    background: #FFD700;
    color: #333333;
}

#registerBtn {
    background: #6A0DAD;
    color: #FFFFFF;
    border: none;
}

#registerBtn:hover {
    background: #FFD700;
    color: #333333;
}

/* Full-width Navigation Menu */
.main-nav {
    background: #FFFFFF;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #E0E0E0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav ul li a {
    color: #6A0DAD;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav ul li a:hover {
    color: #FFD700;
    transform: scale(1.1);
}
.register-content {
    flex: 2;
    min-width: 0;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.right-sidebar {
    flex: 1;
    max-width: 300px;
}

.escort-register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-section h2 {
    font-size: 18px;
    color: #6A0DAD;
    border-bottom: 2px solid #6A0DAD;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.form-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-field label {
    width: 150px;
    font-weight: bold;
    color: #333;
}

.form-field input, .form-field select, .form-field textarea {
    flex: 1;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.form-field textarea {
    height: 100px;
    resize: vertical;
}

.form-field .required {
    color: red;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.rates-table th, .rates-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.rates-table th {
    background: #f5f5f5;
    font-weight: bold;
}

.submit-button {
    padding: 12px 25px;
    background: #6A0DAD;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #5a0c9d;
}

.success-message, .error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

.success-message {
    background: #d4edda;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #FFFFFF;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-column ul li a.highlight {
    color: #FF0000;
}

.footer-column ul li a.highlight:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    margin: 5px 0;
    color: #FFFFFF;
}

.footer-bottom a.cookie-link {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom a.cookie-link:hover {
    color: #FFD700;
}
@media (max-width: 768px) {
    .register-page {
        flex-direction: column;
    }
    .right-sidebar {
        max-width: 100%;
    }
}