
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
            background-color: #C19C5C;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Header */
        .header {
            padding: 5px;
            background-color: #C19C5C;
            width: 100%;
        }
                
        .nav-links {
            display: flex;
            justify-content: space-evenly; /* Evenly distribute all items */
            align-items: center;
            width: 100%;
            max-width: 1200px; /* Optional: limit max width */
            margin: 0 auto; /* Center the nav if using max-width */
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            white-space: nowrap;
            padding: 8px 16px; /* Add some padding for better click area */
        }

        .nav-links a:hover {
            opacity: 0.8;
        }
        
        .manager-login {
            background-color: #034A91;
            color: #ffffff;
            padding: 8px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        .manager-login:hover {
            background-color: #003366;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }
        
        /* Logo */
        .logo-container {
            margin-bottom: 20px;
        }
        
        .heart-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .heart-icon::before {
            content: '♥';
            font-size: 30px;
            color: #C19C5C;
        }
        
        /* Title */
        .site-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }
        
        .site-subtitle {
            font-size: 16px;
            color: #cccccc;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        /* Login Form */
        .login-form {
            width: 100%;
            max-width: 350px;
        }
        
        .form-title {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight:4 700;
        }
        
        .form-group {
            margin-bottom: 10px;
        }
        
        .form-group-2 {
            margin-bottom: 0;
        }
        
        input[type="email"],
        input[type="password"],
        input[type="date"],
        input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #555;
            border-radius: 5px;
            background-color: #ffffff;
            font-size: 16px;
            color: #999;
        }

        select {
            width: 100%;
            padding: 12px 7px !important;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #ffffff;
            font-size: 16px;
            color: #999;
            height:50px;
        }
        
        input[type="email"]:focus,
        input[type="password"]:focus,
        input[type="date"]:focus,
        input[type="text"]:focus {
            outline: none;
            border-color: #C19C5C;
        }
        select:focus {
            outline: none;
            border-color: #C19C5C;
        }
        
        input::placeholder {
            color: #999;
        }
        
        .login-button {
            width: 100%;
            padding: 12px;
            background-color: #034A91;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .login-button:hover {
            background-color: #003366;
        }
        
        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }
        
        .forgot-password a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 14px;
        }
        
        .register-success {
            text-align: center;
            margin-top: 20px;
            color: #FFFFFF;
        }
        
        .forgot-password a:hover {
            text-decoration: underline;
        }
        
        .text-login-error{
            color:#FFDD00;
            font-size: 13px;
            font-weight: 400;
        }
        
        .text-forgotpassword-statement{
            color:#FFDD00;
            font-size: 13px;
            font-weight: 400;
        }


        .mobile-group {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: space-between;
        }

        .country-code {
            flex: 1;
            min-width: 80px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .mobile-input {
            flex: 3;
        }

        .form-group input.mobile-input, 
        .country-code select {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            width: 100%;
        }
        