
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4a00e0;
        }
        .logo a {
            text-decoration: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #4a00e0;
        }
        
        .login-btn {
            background-color: #4a00e0;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .login-btn:hover {
            background-color: #3700b3;
            color: white;
        }
        
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .user-info span {
            margin-right: 15px;
            font-weight: 500;
        }
        
        .logout-btn {
            background-color: #e74c3c;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .logout-btn:hover {
            background-color: #c0392b;
        }
        
        /* Section Styles */
        section {
            padding: 100px 5%;
            min-height: 100vh;
        }
        
        /* Home Section */
        #home {
            background-color: #f9f9f9;
            padding-top: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        #home h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #4a00e0;
            text-align: center;
        }
        
        #home p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            text-align: center;
            max-width: 600px;
        }
        
        .registration-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 500px;
        }
        
        .form-group {
            margin-bottom: 5px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .subdomain-preview {
            background-color: #f0f0f0;
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: bold;
            text-align: center;
        }
        
        .signup-btn {
            background-color: #4a00e0;
            color: white;
            border: none;
            padding: 12px 20px;
            width: 100%;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 10px;
            transition: background-color 0.3s;
        }
        
        .signup-btn:hover {
            background-color: #3700b3;
        }
        
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Services Section */
        #services {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        #services h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        #services p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        #contact {
            background-color: #f9f9f9;
        }
        
        #contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #4a00e0;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }
        
        .close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
        }
        
        .verify-message {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .forgot-password-link {
            display: block;
            text-align: right;
            margin-top: 15px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #4a00e0;
            text-decoration: none;
        }
        
        .forgot-password-link:hover {
            text-decoration: underline;
        }
        
        .reset-form {
            display: none;
        }
        
        /* Add to existing modal styles */
        .modal.active {
            display: block;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 18px;
            }
            header {
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 0px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        
            nav ul li {
                margin: 2px 4px;
            }

            .login-btn {
                padding: 8px 10px;
            }
            
            section {
                padding: 80px 20px;
            }
            
            #home {
                padding-top: 70px;
            }
            #home h1 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            #home p {
              margin-bottom: 10px;
            }
            .registration-form{
                padding: 10px;
            }
            .subdomain-preview {
              padding: 8px;
            }
        }
.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

.eye-icon {
    font-style: normal;
}

/* Adjust input padding to prevent text overlap */
input[type="password"],
input[type="email"],
input[type="text"] {
    padding-right: 35px !important;
    width: calc(100% - 35px) !important;
}
