@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input {
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
}

.container-fluid {
  height: 100%;
}

.form-details {
  background-color: #f6e9df;
  color: #48484A;
}

.login-btn,
.create-account-btn {
  height: 60px;
}

input {
  height: 60px;
}

.btn-solid {
  background: #DA7B37;
  color: #FFF;
}

.btn-solid:active,
.btn-solid:focus,
.btn-solid:hover {
  background: #DA7B37;
  color: #F0F0F0;
}

.top,
.bottom {
  flex: 1;
  transition: transform 0.5s ease;
}

.btn-outline {
  border: 2px solid #DA7B37;
  color: #DA7B37
}

.btn-outline:active,
.btn-outline:focus,
.btn-outline:hover {
  border: 2px solid #DA7B37;
  color: #F1B88C
}

.form-welcome-message {
  background-color: #F6E9DF;
}

@media (320px <=width <=576px) {
  .mobile-view {
    display: block !important;
  }
}

/* ======== Animations ======== */

.content {
  transition: transform 0.5s ease !important;
}

.animate-left {
  transition: ease-in-out;
  transform: translateX(-100%) !important;
}

.animate-right {
  transition: ease-in-out;
  transform: translateX(100%) !important;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animate {
  animation: fadeAnimation 0.5s ease;
}

.login-form-container {
  position: relative;
  padding: 50px 20px;
  /* border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

.login-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: url(../../landing/img/reserve-bg.png);
  background-repeat: no-repeat;
  
  background-size: contain;
  background-position: center;
  opacity: 0.1; /* Adjust the opacity as needed */
  z-index: -1; /* Ensure it stays behind the content */
}

.logo img {
  max-width: 80px;
}

h2 {
  color: #333333;
}

p {
  color: #6c757d;
}

.input-group-text {
  background-color: #ffffff;
  border-right: none;
}

.form-control {
  border-left: none;
}

.form-control:focus {
  box-shadow: none;
}

.login-btn {
  background-color: #DA7B37;
  color: white;
  border-radius: 30px;
  padding: 10px 0;
  font-weight: bold;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #b06a36;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.register-link, .text-orange {
  color: #DA7B37;
}

.register-link:hover, .text-orange:hover{
  color: #DA7B37;
}

.reserve-food-section {
  background-color: #DA7B37;
  border-radius: 30px;
  height: 85%;
  width: 70%;
  max-width: 600px;
  max-height: 885px;
  margin: auto;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.reserve-r-logo-bg, .reserve-r-logo-bg-top, .dots-bg {
  position: relative;
}

.dots-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: url(../../landing/img/dots.png);
  /* background-size: contain;
  background-position: center; */
}

.phones-wrapper {
  position: relative;
  height: 300px; /* Adjust as needed */
}

.phone {
  position: absolute;
  width: 140px; /* Adjust the size as needed */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-left {
  transform: rotate(-15deg);
  left: 15%;
}

.phone-right {
  transform: rotate(15deg);
  right: 15%;
}

h3 {
  color: #ffffff;
  font-weight: bold;
}

@media (max-width: 768px) {

  .phone {
    width: 120px;
  }

  h3 {
    font-size: 1.5rem;
  }
}