﻿
* {
    font-size: 14px;
}

.font-20 {
    font-size: 20px;
}

.form-check-input {
    background-color: #FFFFFF !important;
    position: relative;
}

.form-check-input:focus {
    box-shadow: 0 0 10px #00C2CC !important;
}

.form-check-input:checked {
    background-color: #00c2cc !important;
    border-color: #00c2cc !important;
}

.form-check-input:checked::after {
    display: block;
}

.form-control {
    background-color: #FFFFFF !important;
}

.form-control:focus {
    border-color: #00C2CC !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 194, 204, 0.15);
}

.img-custom {
    width: 100%;
    height: 100%;
    object-fit: cover !important; /* this will cover the area, might crop the image */
}

.btn-sm {
    height: 27px !important;
    padding: 0 1rem !important;
}

.btn-lg {
    height: 42px !important;
}

.btn-login {
    --bs-btn-disabled-bg: #c5d0d2;
    --bs-btn-disabled-border-color: none;
    background: #00c2cc;
    border: none;
}

.btn-login:hover {
    background: #00939A;
}

.btn-login:focus {
    background: #00c2cc;
    border: 1px solid #D0D5DD !important;
    box-shadow: 0 0 10px #00C2CC !important;
}

.text-primary {
    color: #00c2cc !important;
}

.text-secondary {
    color: #344054 !important;
}

.text-tertiary {
    color: #667085 !important;
}

.dropdown-menu-pe-list {
    max-height: 125px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-item:hover {
    background-color: #00C2CC !important;
    color: white;
}

.error, .error:focus {
    border: 1px solid red !important; 
}

.form-control.error:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.15) !important;
}

.form-control.error-prefix:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.15) !important;
}

.custom-error-popover {
    --bs-popover-bg: var(--bs-red);
    --bs-popover-border-color: var(--bs-popover-bg);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
    --bs-popover-body-color: var(--bs-body-bg);
  }

.responsive-input {
  padding: 0.5rem 1rem !important;
  font-size: 1.25rem !important;
  line-height: 1.5 !important;
  border-radius: 0.3rem !important;
}

@media (min-width: 768px) {
  .responsive-input {
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border-radius: 0.375rem !important;
  }
}

@media (min-width: 1200px) {
  .responsive-input {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    border-radius: 0.2rem !important;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:-moz-autofill {
    box-shadow: 0 0 0 30px white inset !important;
    -moz-text-fill-color: #000 !important;
}