body{
    overflow-x: hidden;
}

header {
    background-color: #181a1b; 
    padding: 10px 0; 
    width: 100%; 
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70% !important; 
    margin: 0 auto; 
    color: white;
    
}

.logo img {
    height: 70px; 
    width: auto; 
    vertical-align: middle;
    margin-top: 4px;
}

.logo a {
    display: inline-block;
}


.nav {
    display: flex;
    align-items: center;
}

.nav__links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav__links li {
    margin: auto 10px
}

.nav__links li a {
    text-decoration: none;
    color: #edf0f1;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav__links li a:hover {
    color: #0089a9;
}

.nav__links li.special-color a {
    color: #00b1dd;
}

.nav__links li.special-color a:hover {
    color: #0089a9;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00b1dd;
    color: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 6px;
    margin-left: 10px;
}

.cta:hover {
    background-color: #0089a9;
    transform: translateY(-2px);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta i {
    font-size: 20px;
    color: black;
}

.cta span {
    font-size: 16px;
    color: black;
    font-size: 18px;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 100%;
    cursor: pointer;
    z-index: 10 !important;
    margin-right: 20px;
    width: 100%;
    margin: auto 10px auto 0;  
}
  
.hamburger i {
    font-size: 37px;
    color: white;
    margin: auto 0;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: #181a1b;
    box-shadow: none;
    transition: right 0.3s ease, box-shadow 0.3s ease;
    z-index: 11;
}

.sidebar.open {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}
  
.sidebar ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    text-align: left;
}
  
.sidebar ul li {
    padding: 15px 0;
    border-bottom: 1px solid #0089a9;
}
  
.sidebar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 8;
}

.close-btn {
    top: 10px;
    right: 10px;
    margin: 15px 25px 0 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: end;
    z-index: 12;
    
}


@media screen and (max-width: 600px) {
.navbar{
    height: 50px;
    padding: 11px auto !important;
    display: flex;
}
.navbar-links {
    display: none !important;
}
  
.hamburger {
    display: flex;
}

.cta{
    margin-left: 0;
}
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(5px);
    overflow: hidden; 
}

.modal-content {
    background-color:#242729;
    margin: auto; 
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    width: 400px; 
    border-radius: 8px;
    position: relative;
}

.modal-open {
    overflow: hidden; 
    height: 100%; 
}

.input-field{
    background-color: #404649;
    color: #ffffff;
}

#login-form h2{
    color: #ffffff;
    margin-bottom: 20px;
}

#login-form p{
    margin-top: 20px;
    color: #fff;
}

#login-form label{
    color: #ffffff;
    text-align: left;
    display: block;
}

.log-reg-btn {
    background-color: #00b1dd;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.log-reg-btn:hover {
    background-color: #0089a9;
    transform: translateY(-2px);
}

.log-reg-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

#dob{
    color: #fff;
}

#register-form p{
    margin-top: 20px;
    color: #fff;
}

#register-form h2{
    color: #ffffff;
    margin-bottom: 20px;
}

#register-form label{
    color: #ffffff;
    text-align: left;
    display: block;
}

#register-form p{
    margin-top: 20px;
    color: #fff;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: none;
    border-radius: 4px;
}

.register-link, .login-link {
    color: #0089a9;
    cursor: pointer;
}

.form-row {
    display: flex; 
    justify-content: space-between; 
}

.left-column,
.right-column {
    flex: 1; 
    min-width: 150px; 
}

.left-column {
    margin-right: 20px; 
}


.already-account {
    margin-top: 20px; 
    color: #ffffff; 
    font-size: 14px; 
}

.already-account span {
    color: #0077cc; 
    cursor: pointer; 
}

.divider{
    height: 1px;
    background-color: rgb(128, 128, 128);
    border-color: rgb(128, 128, 128);
}

@media only screen and (max-width: 900px) {
    .header_container {
        flex-direction: row; 
        width: 90% !important; 
    }
}

@media only screen and (max-width: 600px) {
    
html, body {
    overflow-x: hidden;
}

.header{
    width: 100% !important;
}

.header_container {
    flex-direction: row; 
    width: 90%; 
}

.logo img {
    height: 70px;
    margin-top: 0;
}

.checkbtn{
    display: block;
}



.logo-text {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;

}
.logo-container {
    justify-content: center; 
    text-align: center; 
}

.sidebar a{
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #edf0f1; 
    font-size: 18px;
    transition: color 0.3s ease;
}

ul {
    list-style-type: none
}
.nav {
    flex-direction: column; 
    
}

.nav__links {
    margin-top: 10px; 
    display: none;

}

}