


.btn-default {
    /* Typography */
    color: #185EBC;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;

    /* Layout & Appearance */
    width: 120px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid rgba(24, 94, 188, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Interaction */
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    overflow: hidden;

    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* HOVER EFFECTS */
.btn-default:hover {
    color: white;
    background-color: #185EBC;
    border-color: #185EBC;
    box-shadow: 0 4px 12px rgba(24, 94, 188, 0.3);
    transform: translateY(-1px);
}

/* ACTIVE/PRESSED STATE */
.btn-default:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(24, 94, 188, 0.2);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FOCUS STATE (for accessibility) */
.btn-default:focus {
    border-color: #185EBC;
    box-shadow: 0 0 0 3px rgba(24, 94, 188, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* DISABLED STATE */
.btn-default:disabled {
    color: #a0a0a0;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-default:disabled:hover {
    color: #a0a0a0;
    background-color: #f5f5f5;
    transform: none;
    box-shadow: none;
}



.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
}



/* Login Button */
.login-btn {
    background: white;
    color: #185EBC !important;
    border: none;
    border-radius: 0.75rem;
    padding: 5px 35px;
    font-weight: 700;
    font-size: clamp(12px, 1.2vw, 18px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}