
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css');

:root {
  --color-primary:#E77076 ;
  --color-secondary: #99D98C;
  --color-light: #f2f2f2;
  --color-gray: #ced4da;
  --color-dark: #212121;
  --color-white: #ffffff;
  --color-error: #e2442f;
  --color-warning: #ffc900;
  --color-info: #02a2b9;
  --color-success: #1ba345;
  --color-input: #00d1b2;
   --border-radius: 5px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html,
body {
  height: 100%;
}

img {
  max-width: 60%;
  align-self: center;
}
input,
button,
textarea {
  font: inherit;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus {
  outline: 0;
  box-shadow:  0 0 0 0.125rem rgb(0 209 178 / 25%);
  border: solid 1px var(--color-input);
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgb(238, 57, 76, 25%);
}
body {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 2rem;
  line-height: 1.5;
}
h2 {
  font-size: 1.4rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.timer {
  color:#212121
}
.digit {
  font-size: 150px;
  color: #212121;
}
.txt {
  font-size: 150px;
  color: #212121;
}
.door-name {
  font-size: 60px;
  color: #ffffff;
  padding: 40px;
  font-weight: bold;
}
.door-card {
  border-style: solid;
  border-color: #f2f2f2;
  border-radius: 10px;
  border-width: 1px;
}
.order, .customer, .order-detail {
  padding:40px;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem;
}

.header {
  border-bottom: solid 1px var(--color-light);
}

.header .container {
  display: flex;
  align-items: center;
  gap:1rem;
  
}





.nav a:nth-last-child(2) {
	margin-left: auto;
	font-weight: bold;
} 
.nav-link {
  color: var(--color-primary);
}


.logo {
  padding: 0.5rem;
  background-color: var(--color-primary);
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
  text-transform: uppercase;
}
.logo:hover {
  text-decoration: none;
}
/* feature */
.feature {
  display: flex;
  justify-content: space-between;
}
.feature-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-content .cta {
  margin-top: 1rem;
  align-self: flex-start;
}
.feature-image {
  width: 50%;
  height: auto;
}


/* form */
form > * {
  display: block;
  margin-bottom: 0.5rem;
}

form > input[type='submit'],
form > button {
  margin: 1rem 0;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

hr {
  height: 1px;
  border: none;
  background-color: var(--color-light);
}

input[type='text'],
input[type='email'],
input[type='password'],
textarea {
  border-radius: var(--border-radius);
  border: solid 1px var(--color-gray);
  width: 100%;
  padding: 0.25rem 0.75rem;
}

textarea {
  max-height: 7rem;
}


/* footer */
.footer p {
  text-align: center;
}

.footer {
  margin-top: auto;
  padding: 0.5rem 0;
  border-top: solid 1px var(--color-light);
}

.btn {
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  border: solid 1px var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  min-width: 6rem;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}
.btn-outline {
  border: solid 1px var(--color-primary);
}

.btn-primary {
  border: solid 1px var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* utilities */
.text-center {
  text-align: center;
}

.error {
  color: var(--color-error);
}

.full-width {
  width: 100%;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}
.btn-divine-submit {
  background-color: #E77076;
  border-color: #E77076;
  color: #ffffff;
}
.card-border-color {
  border-color: #f2f2f2;
  border-radius: 10px;
  border-width: 1.5px;
}

@media (max-width: 768px) {
  .header > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .brand {
    order: 1;
  }
  .card {
    max-width: 360px;
  }
  .feature {
    flex-direction: column;
  }
  .feature-content,
  .feature-image {
    width: 100%;
  }

  .feature-image {
    order: 1;
  }
  .feature-content {
    order: 2;
    text-align: center;
  }
  .feature-content .cta {
    align-self: center;
  }
}
.no-order-card {
  border-style: none;
  /* border-color: #e7707640;
  border-width: 2px;
  border-radius: 100px; */
}
.no-order-div {
  margin-top:8rem;
}
.no-order-title {
  font-size: 8rem;
  color: #E77076;
}
.no-order-title-doorname{
  font-size: 12rem;
  color: #E77076;
  font-weight: bolder;
}
.no-order-img{
  max-width: 100%;
}
.no-order-door-title {
  color: #212121;
  font-size: 2.5rem;
}

/* .no-order-door-div {
   background-color:#99D98C; 
  border: 2px solid #99D98C;
  border-radius: 10px;
  padding: 20px;
} */
.in-time {
  background-color:#99D98C;
}
.warning-time {
background-color: #ffc900;
}
.out-of-time {
background-color: #e2442f;
}
.out-of-time-message p {
font-size: 4rem;
}
.doors-card {
  border-color: #f2f2f2;
  border-radius: 10px;
  border-width: 4px;
  border-style: solid;
  padding: 1.5rem;
  margin: 1rem;
}
.doors-card-title {
  font-size: 40px;
  color: #E77076;
}
.blink{
  animation:blink 500ms infinite alternate;
}

@keyframes blink {
  from { opacity:0; }
  to { opacity:1; }
};

