@import url("https://fonts.googleapis.com/css2?family=Quicksand:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600;1,700;1,800&display=swap");

:root {
  --primary: rgb(255, 89, 0);
  --secondary: blue;
  --primary_bg: #131315;
  --header_color: #FDFDFD;
  --desc_color: #c4c4c4;
  --white_text: #ffffff;
  --black_text: #000000;
  --primary_text: #B6B6B6;
  --secondary_text: #F8F8F8;
  --white_text: #F8F8F8;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
}

body {
  background-color: var(--primary_bg);
  background-repeat: no-repeat;
  background-size: fill;
  min-height: 100vh;
  color: var(--secondary_text);
}

.transparent_card {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%);
  backdrop-filter: blur(21px);
}

.primary-btn {
  color: var(--header_color);
  font-size: 1.22rem;
  font-weight: 900;
  padding: 0.77rem 1.5rem;
  background: linear-gradient(180deg, rgb(255, 146, 104) 0%, rgb(249, 92, 31) 100%);
  border-radius: 2rem;
  text-decoration: none;
}
/* input:invalid{
  border: 2px solid red;
  animation: shake 0.2s 2;
} */
@keyframes shake {
  25%{
    translate: 6px 0;
  }
  50%{
    translate: -6px 0;
  }
  75%{
    translate: 6px 0;
  }
}
.input {
  border-radius: 0.5rem;
  padding: 0.5rem;
  width: 100%;
}
.input[type='file']{
  border: 1px solid var(--header_color);
}
.submit {
  background-color: var(--primary);
  color: var(--white_text);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.title{
  color: var(--header_color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
}
/* X-Small devices (portrait phones, less than 576px) */

/* Small devices (landscape phones, 576px and up)*/

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}