/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

 

/* Mobile Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle i {
    font-size: 22px; /* Smaller icon */
    color: #333;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        text-align: center;
        padding: 8px 0;
    }

    .nav-toggle {
        display: block;
    }
}

/* Registration Container */
.registration-container {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.registration-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2c3e50;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.mobile-container {
    display: flex;
}

.mobile-container input:first-child {
    width: 20%;
    text-align: center;
    border-right: none;
}

.mobile-container input:last-child {
    width: 80%;
}

.password-wrapper,
.repeat-password-wrapper {
    position: relative;
}

.password-wrapper input,
.repeat-password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.password-wrapper i,
.repeat-password-wrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Button Styling */
button[type="submit"] {
    background: #3498db;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #2980b9;
}

/* Chat Container */
#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

#chat-collapsed {
    background: #3498db;
    color: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}

#chat-box {
    display: flex;
    flex-direction: column;
    height: 350px;
}

#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: #fff;
    padding: 10px;
}

#chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#chat-input-box {
    border-top: 1px solid #ccc;
    padding: 10px;
}

#chat-input {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

#send-message {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: 5px;
}

/* Footer */
.dashboard-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.social-media a {
    color: white;
    margin-right: 10px;
}

.payment-methods i {
    color: white;
    margin-right: 10px;
}

.trust-badges img {
    width: 60px;
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header .container, .navbar, .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-center .menu {
        flex-direction: column;
        align-items: center;
    }

    .registration-container {
        width: 90%;
        padding: 20px;
    }
}
