body {
    font-family: 'Open Sans' !important;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.start-home {
    width: 100%;
    height: 85vh;
    background-image: url('https://cdn.tenzix.com/homepage/img/img_1.png'), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.start-home {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.start-home-content {
    margin-left: 20vw;
    color: white;
}

.btn {
    border-radius: 25px;
}

.features-list-hometop {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-top {
    width: 20px;
    margin-right: 10px;
    font-weight: bold;
}

.domain-container {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    justify-content: center;
}

.domainsearch-box button .fa {
    color: white;
}

.domain-options {
    display: flex;
    align-items: flex-end;
    font-family: 'Open Sans';
}

.domain-options div {
    margin: 0 10px;
    text-align: center;
}

.domain-options div span {
    display: block;
    font-weight: bold;
    font-family: 'Bebas Neue';
    font-size: 25px;
}

.search-btn {
    background-color: var(--bs-dark-text-emphasis);
    color: white;
    border-radius: 0px;
    margin-right: 15px;
}

.input-group input {
    border-radius: 0px;
}

.underline:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #a5a5a5;
    z-index: -1;
}

.domain-input {
    padding-right: 20vw;
}

@media (max-width: 576px) {
    .domain-container {
        display: none;
    }
}

.btn {
    background-color: rgb(45, 45, 48);
    color: white;
}

.bs-icon-md.bs-icon-rounded.bs-icon-primary.bs-icon {
    background-color: rgb(45, 45, 48);
}

.no-background {
    background-color: rgba(255, 210, 0, 0) !important;
}

:root {
    --bs-body-color: rgb(45, 45, 48) !important;
}

.icon {
    color: rgb(45, 45, 48) !important;
}

.error {
    color: rgb(151, 41, 41);
}
.success {
    color: rgb(45, 45, 48);
}

table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px auto;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 10px;
    text-align: left;
}

 .popup-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.6);
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .popup-box {
     background: #ffffff;
     padding: 40px;
     border-radius: 10px;
     width: 90%;
     max-width: 600px;
     position: relative;
     text-align: center;
     color: #000000;
 }

 .popup-close {
     position: absolute;
     top: 12px;
     right: 12px;
     background: none;
     border: none;
     font-size: 22px;
     cursor: pointer;
     color: #000;
 }

 .popup-icon {
     font-size: 60px;
     font-weight: bold;
     margin-bottom: 10px;
 }

 .popup-box h2 {
     font-weight: 700;
     font-size: 24px;
     margin-bottom: 15px;
 }

 .popup-box p {
     margin: 6px 0;
 }