  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
  }

  .required {
    color: red;
  }

  .input-wrapper {
    position: relative;
    width: 100%;
    
  }

  .input-wrapper input {
    width: 100%;
    height: 40px;
    border: 1px solid black;
    border-radius: 10px;
    padding-left: 45px;
    padding-right: 45px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
  }

  .input-wrapper input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }

  .left-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
  }
.country-select {
  width: 100%;
  padding-left: 40px; /* THIS prevents overlap */
}
  .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 16px;
  }

  .error-style {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: red;
  }
   .custom-alert {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  /* Success */
  .success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
  }

  /* Error / Danger */
  .danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
  }

  /* Warning */
  .warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
  }

  /* Info */
  .info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
  }

