
/*login register modal box*/

.modal-content {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    border: none;
    border-bottom: 2px solid #0d6efd;
}

.hover-primary:hover {
    color: #0d6efd !important;
    text-decoration: underline !important;
}


.form-control {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.15);
}

.btn-primary {
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.social-login {
    margin-top: 20px;
    text-align: center;
}

.social-btn {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane.active {
    animation: fadeIn 0.5s;
}

.pointer {
    cursor: pointer;
}

.divider {
    position: relative;
    text-align: center;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
    margin: auto;
}

.social-btn {
    transition: all 0.3s;
}

.social-btn:hover {
    /*transform: translateY(-2px);*/
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/*Captcha*/
.captcha-container {
    margin: 15px 0;
}
.refresh-captcha {
    cursor: pointer;
    margin-left: 10px;
}
.error-message {
    color: red;
    display: none;
}



.btn-install, .btn-later {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-install {
    background:  #3261f0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-later {
    background: #f0f0f0;
    color: #666;
}

.install-arrow {
    transition: transform 0.2s;
}

.btn-install:hover .install-arrow {
    transform: translateX(4px);
}


#subscriber_email[readonly] {
    background-color: #d0d1d1;
    cursor: not-allowed;
}

.subscription-details {
    max-width: 800px;
    margin: 0 auto;
}

.feature-list {
    padding-left: 1rem;
}

.feature-item, .policy-item {
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-details {
    border-left: 4px solid #0d6efd;
}

.subscription-highlight {
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i, .policy-item i {
    width: 20px;
    text-align: center;
}

.main-features .lead {
    font-size: 1.1rem;
    color: #495057;
}

.device-policy h5 {
    color: #495057;
}


/* contact style*/
.contact-message-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .contact-heading {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-text {
    color: #505050;
    line-height: 1.6;
  }
  
  .benefits-list {
    list-style: none;
    padding-left: 0;
  }
  
  .benefits-list li {
    margin-bottom: 0.75rem;
    color: #505050;
  }
  
  .benefits-list i {
    color: #3498db;
  }
  
  .contact-cta {
    font-weight: 500;
    color: #2c3e50;
  }
  
  @media (max-width: 768px) {
    .contact-message-container {
      padding: 1.5rem;
    }
  }
  /*end contact style*/


  