        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            height: 100vh;
        }

        .signup-container {
            display: flex;
            height: 100vh;
        }

        /* Left side - Form */
        .form-section {
            flex: 1;
            background: white;
            display: flex;
            flex-direction: column;
            padding: 0;
            position: relative;
        }

        .form-header {
            padding: 24px 40px;
            border-bottom: 1px solid #e8e9ef;
			text-align: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #092eea;
            text-decoration: none;
        }

        .logo .dot {
            color: #ff6b35;
        }
		
		.login-header-icon {
		  text-align: center;
		  padding: 70px 0px 0px 0px;
		  position: relative;
		}



		.login-header-icon::before {
		  left: 0;
		}

		.login-header-icon::after {
		  right: 0;
		  background: linear-gradient(90deg, #3498db, transparent);
		}

		.icon-circle {
    display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 100px;
			height: 100px;
			border-radius: 50%;
			background: linear-gradient(135deg, #3498db, #0c19ff);
			color: white;
			font-size: 45px;
			box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
			position: relative;
			z-index: 1;
		}

		.icon-circle i {
		  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
		}

		/* Animation */
		.icon-circle:hover {
		  animation: pulse 1.5s infinite;
		}

		@keyframes pulse {
		  0% { transform: scale(1); }
		  50% { transform: scale(1.1); }
		  100% { transform: scale(1); }
		}

        .form-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }

        .form-title {
            font-size: 23px;
            font-weight: 400;
            color: #323338;
            margin-bottom: 8px;
			margin-top: 25px;
            line-height: 1.2;
			text-align: center;
        }

        .form-subtitle {
            font-size: 16px;
            color: #676879;
            margin-bottom: 32px;
            line-height: 1.4;
			text-align: center;
        }

        .google-btn {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d0d4e4;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            color: #323338;
            margin-bottom: 24px;
            font-family: inherit;
        }

        .google-btn:hover {
            border-color: #a1a1aa;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .google-btn svg {
            margin-right: 12px;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 24px 0;
            color: #a1a1aa;
            font-size: 14px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8e9ef;
        }

        .divider span {
            padding: 0 16px;
            background: white;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d0d4e4;
            border-radius: 4px;
            font-size: 14px;
            background: white;
            transition: border-color 0.2s ease;
            color: #323338;
            font-family: inherit;
        }

        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #0c19ff;
        }

        .form-input::placeholder {
            color: #a1a1aa;
        }

        .form-select {
            cursor: pointer;
        }
		
		.resend-btn {
            width: 100%;
            padding: 16px;
            background: #0e810f;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 24px;
            font-family: inherit;
        }

        .resend-btn:hover {
            background: #046105;
        }

        .signup-btn {
            width: 100%;
            padding: 16px;
            background: #0c19ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 24px;
            font-family: inherit;
        }

        .signup-btn:hover {
            background: #3037aa;
        }

        .signup-btn:disabled {
            background: #d0d4e4;
            cursor: not-allowed;
        }

        .terms-text {
            font-size: 12px;
            color: #a1a1aa;
            text-align: center;
            line-height: 1.4;
            margin-top: 24px;
        }

        .terms-text a {
            color: #5a5fb4;
            text-decoration: none;
        }

        .terms-text a:hover {
            text-decoration: underline;
        }

        .login-link {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: #676879;
        }

        .login-link a {
            color: #5a5fb4;
            text-decoration: none;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        /* Right side - Banner */
        .banner-section {
            flex: 1;
            background: linear-gradient(135deg, #1b1e5e 0%, #0c19ff 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 0px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }



        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .banner-content {
            text-align: right;
            z-index: 2;
            position: relative;
        }

        .banner-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .banner-subtitle {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 40px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .features-list li::before {
            content: '✓';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            margin-left: 16px;
            font-weight: bold;
        }

        .banner-image {
            width: 300px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 500;
        }

        .testimonial {
            margin-top: 140px;
            text-align: center;
            font-style: italic;
            opacity: 0.9;
        }

        .testimonial-author {
            margin-top: 12px;
            font-size: 14px;
            font-weight: 500;
        }
		
		/* עבור כרום, ספארי, אדג' */
		.no-arrows::-webkit-outer-spin-button,
		.no-arrows::-webkit-inner-spin-button {
		  -webkit-appearance: none;
		  margin: 0;
		}

		/* עבור פיירפוקס */
		.no-arrows {
		  -moz-appearance: textfield;
		}
		
		.password-wrapper {
		  position: relative;
		  display: flex;
		  align-items: center;
		}

		.password-wrapper .form-input {
		  width: 100%;
		  padding-left: 40px;
		  padding-right: 18px;
		  box-sizing: border-box;
		}

		.password-wrapper .toggle-password {
		  position: absolute;
		  left: 10px;
		  cursor: pointer;
		  color: #888;
		}
		
		       .verification-code {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .code-input {
            width: 50px;
            height: 60px;
            text-align: center;
			color: #0c19ff;
            font-size: 24px;
            font-weight: 600;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .code-input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
        }
        
        .verification-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
		
		.code-input {
		  direction: ltr;       /* הקלדה מימין לשמאל */
		  text-align: center;   /* למרכז את הספרה */
		  font-size: 1.5rem;
		  width: 2.5rem;
		  height: 3rem;
		  margin: 0 0.2rem;
		}
		.gmassage {
		font-size: 14px;
		text-align: center;
		color: green;	
		}
		
		.success-message {
			background-color: #d4edda;
			color: #155724;
			border: 1px solid #c3e6cb;
			padding: 12px 20px;
			border-radius: 8px;
			margin-bottom: 20px;
			font-size: 1rem;
			text-align: right;
			box-shadow: 0 2px 6px rgba(0,0,0,0.08);
		}
		



.banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/timesheet-billing-img1.svg');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.8; /* Adjust opacity to blend with gradient below */
}

.banner-content > * {
    position: relative;
    z-index: 1;
}






        /* Mobile responsive */
        @media (max-width: 768px) {
            .signup-container {
                flex-direction: column;
            }
            
            .banner-section {
                display: none;
            }
            
            .form-content {
                padding: 40px 24px 125px;
            }
            
            .form-header {
                padding: 16px 24px;
            }
            
            .form-title {
                font-size: 18px;
            }
			.form-subtitle {
				font-size: 14px;
			}
        }

        @media (max-width: 1024px) {
            .banner-title {
                font-size: 36px;
            }
            
            .banner-subtitle {
                font-size: 18px;
            }
        }

  /* Radio button group styles */
  .radio-group-wide {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-top: 15px;
  }
  
  .radio-option-wide {
    flex: 1;
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .radio-option-wide input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  
  .radio-option-wide i {
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
  }
  
  .radio-option-wide span {
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .radio-option-wide:hover {
    border-color: #aaa;
  }
  
  .radio-option-wide input:checked + .radio-content {
    color: #0066cc;
  }
  
  .radio-option-wide input:checked ~ .radio-content i,
  .radio-option-wide input:checked ~ .radio-content span {
    color: #0066cc;
  }
  
  .radio-option-wide input:checked {
    border-color: #0066cc;
  }
  
  .radio-option-wide input:checked + .radio-content::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #0066cc;
    border-radius: 6px;
    pointer-events: none;
  }		
  
.input-error {
    border-color: #ff3860 !important;
}

.error-message-field {
    color: #ff3860;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-align: right;
    direction: rtl;
}

.error-message {
    color: #ff3860;
    background-color: #ffeef0;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
    direction: rtl;
}