* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background: #007a8d;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    height: 100vh;
    margin: -20px 0 50px;
    padding: 10px;
}

.status__msg {
    border-style: dotted;
    padding: 10px;
    color: black;
    font-weight: bold;
}



.container {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 430px;
    min-width: 370px;
}

.card-container {
    display: flex;
}

.left {
    flex: 1;
    height: 480px;
    background-color: #00b4cf;
}

.right {
    display: flex;
    flex: 1;
    height: 460px;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
}

.left {
    display: flex;
    flex: 1;
    height: 522px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}


.left-container {
    height: 50%;
    width: 90%;
    text-align: center;
    line-height: 22px
}

.left p {
    font-size: 0.9rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-container {
    width: 70%;
    height: 90%;
    text-align: center;
}

input,
textarea {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    font-size: 0.8rem;
}

input:focus,
textarea:focus {
    outline: 1px solid #00b4cf;
}

button {
    border-radius: 20px;
    border: 1px solid #00b4cf;
    background-color: #00b4cf;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-out;
    cursor: pointer;
}

button:hover {
    opacity: 0.7;
}

textarea {
    height: 90px;
}
/* responsive */

@media only screen and (max-width: 600px){
    .left {
        display: none;
    }

    .lg-view {
        display: none;
    }
}

@media only screen and (min-width: 600px) {
    .sm-view {
        display: none;
    }
}




/*Navbar*/
#container {
  max-width: auto;
  /*padding-left: 25px;
  padding-right: 25px;*/
  padding: auto;
  margin-bottom: 80px;
}

.navbar {
  background-color: rgba(204, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 20px;
  padding-top: 20px;
}

.navbar img {
  margin: 20px;
}

#logo {
  filter: grayscale(0%);
  transition: all 1s ease;
  border-radius: 10px;
}

#logo:hover {
  /*transform: translateY(10px);*/
  filter: grayscale(100);
  transform: scale(1.2);
  transition: all 1s ease;
}

.navbar .toggle-btn {
  color: white;
  font-size: 1cm;
  cursor: pointer;
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  font-size: 20px;
  margin-top: 85px;
  background: rgba(204, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.dropdown-menu.open {
  padding: 15px;
  height: 350px;
}

.dropdown-menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu a {
  padding: 10px;
}


/* Navbar Responsive DSGN */
@media (max-width: 992px) {
  .navbar .menu-items{
    display: none;
  }

  .navbar .toggle-btn {
    display: block;
  }

  .dropdown-menu{
    display: block;
  }
}

@media (max-width: 576px) {
  .dropdown-menu {
    left: 2rem;
    width: unset;

  }
}

/* End Of Navbar */
.wth{
    cursor:pointer;
}

nav {
  flex: 1;
  text-align: right;
}

nav ul {
  list-style-type: none;
  display: inline-flex;
}

nav ul li {
  font-size: 18px;
  display: flex;
  margin-right: 30px;
}

nav li a:hover {
  color: lightskyblue;
  border-bottom: 5px solid lightskyblue;
}

nav li a {
  transition: color 0.5s, border-bottom 5s;
}
