.logo {
    width: 300px;
}

.header_logo {
    width: 150px; 
    margin-left: 20px;
}

.bg-dark-adjustd {
    background-color: #070945;
}

.navbar-dark-adjustd {
    background-color: #070945;
}

.nav-link {
    font-size: 20px;
    /* font-weight: bold; */
    justify-content: center;
    color: #e9cbd3
}

.nav ul li nav-item {
    color: #e9cbd3
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233,203,211,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: #e9cbd3;
}

input::placeholder {
    color: #e9cbd3 !important;
}

input {
    color: #e9cbd3 !important;
}

textarea::placeholder {
    color: #e9cbd3 !important;
}

textarea {
    color: #e9cbd3 !important;
}

select::placeholder {
    color: #e9cbd3 !important;
}

select {
    color: #e9cbd3 !important;
}

.btn {
    text-decoration: none;
    color: #fff;
}

.btn a {
    text-decoration: none;
    color: #fff;
}

.btn:hover, .btn:focus, .btn:active, .open>.dropdown-toggle.btn {
    color: #fff;
    background-color: #E9CDB3;
    border-color: #E9CDB3; /*set the color you want here*/
}

.card2 {
    background-color: #070945;
    color: #E9CDB3;
}

.bg-img {
    /* background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1472&q=80"); */
    background-size: cover;
    background-position: center;
    background-color: #E9CDB3;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  
  .bg-img>p {
    background-color: rgb(17, 17, 17, 0.7);
    padding: 10px;
    color: white;
  }

  #toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}
