/**
 * Register Complete CSS
 * This file contains the CSS styles for the register complete page
 */

/* Order Tracking Section */
.order-tracking-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

@media (min-width: 768px) {
    .order-tracking-section {
        padding: 200px 300px;
    }
}

.order-tracking-container {
    max-width: 1440px;
    margin: 0 auto;
}

.order-tracking-content {
    text-align: center;
}

.order-tracking-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #111827;
}

@media (min-width: 768px) {
    .order-tracking-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
}

.order-tracking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    margin-top: 20px;
}

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

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        justify-content: center;
    }
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
    text-align: left;
}

.required {
    color: #ef4444;
    margin-right: 4px;
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

@media (min-width: 768px) {
    .form-control {
        font-size: 16px;
    }
}

.form-control:focus {
    outline: none;
    border-color: #BE930B;
    box-shadow: 0 0 0 2px #BE930B;
}

.form-actions {
    margin-top: 12px;
}

.btn {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    font-size: 14px;
}

@media (min-width: 768px) {
    .btn {
        font-size: 16px;
    }
}

.btn-primary {
    background-color: #BE930B;
    color: #ffffff;
    border: 1px solid #BE930B;
}

.btn-primary:hover {
    background-color: #d4a612;
    border-color: #d4a612;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-tracking-section {
        padding: 100px 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
}
