#login-signup-popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	width: 300px;
}

.close-popup {
	cursor: pointer;
	float: right;
}


#notification {
	font-size: 16px;
	padding: 10px;
	margin-top: 10px;
	border-radius: 5px;
}

#notification.green {
	background-color: #d4edda;
	color: green;
}

#notification.red {
	background-color: #f8d7da;
	color: red;
}



/* General styling for button */
  .button {
    color: #000;
    cursor: pointer;
    font-size: 20px;
  }

  /* Overlay styling */
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }

  /* Popup styling */
  .popup {
    margin: 70px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    width: 30%;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
  }

  .popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
  }

  .popup .close:hover {
    color: #e74c3c;
  }

  .popup .content {
    margin-top: 20px;
  }

  .input-container {
    position: relative;
    margin-bottom: 10px;
  }

  .input-container input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: border 0.3s ease;
  }

  .input-container input:focus {
    border-color: #3498db;
    outline: none;
  }

  .floating-label {
    position: absolute;
    top: 18px;
    left: 10px;
    font-size: 16px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .input-container input:focus + .floating-label,
  .input-container input:not(:placeholder-shown) + .floating-label {
    top: -20px;
    font-size: 14px;
    color: #000;
  }

  .btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-primary:hover {
    background-color: #2980b9;
  }

  @media screen and (max-width: 700px) {
    .popup {
      width: 80%;
    }
  }
  
  .name-fild {
    display: flex;
    column-gap: 10px;
  }
  
  
  #registration-section .input-container{
      margin-top: 15px;
  }

  
  #login-section, #otp-verification-section, #registration-section{
      margin-bottom: 20px;
  }

  a.button.login-icon{
    background-color: unset !important;
    padding:10px;
  }

   a.button.login-icon:hover{
    color:#000 !important;
  }


  .disabled-btn {
    background-color: #ccc !important; /* Light grey to indicate the button is disabled */
    color: #888 !important; /* Lighter text color */
}

.disabled-btn:hover {
    background-color: #ccc !important; /* Disable hover effect */
    cursor: not-allowed; /* Cursor stays as not-allowed */
}
