/*/css/elements.css*/

.uploads {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(1, 1);
    position: relative;
    background-color: transparent;
    justify-content: space-between;
    place-items: center;
    place-content: center;
}

.uploads a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    gap: 1.0rem;
}

.upload {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    background-color: rgba(0, 110, 255, 0.075);
    border-radius: 0.7rem;
    padding: 0.2rem;
}

.upload svg {
    color: var(--accent-color);
}

.upload .group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    place-items: center;
    place-content: center;
    justify-content: space-between;
}


.upload .subgroup {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    place-items: center;
    place-content: center;
    justify-content: space-between;
    gap: 0.1rem;
}

.upload .group section {
    display: flex;
    flex-direction: row;
    border-radius: 1.0rem;
    color: var(--base_text_color);
    background-color: #282828;
    padding: 0.1rem 0.3rem;
}

.upload .title {
    border-radius: 0.7rem;
    color: var(--base_text_color);
    position: relative;
    outline: none;
    background-color: var(--border_color);
}

.upload .active {
    animation: rollIn 0.5s ease-out forwards;
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(-180deg) scale(0.3);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) rotate(15deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}


.auth {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--base_bg);
    color: var(--base_text_color);
    padding: 0.1rem;
    position: fixed;
    z-index: 5000;
    place-content: center;
    place-items: center;
}

.form-container {
  width: 350px;
  height: 500px;
  background-color: var(--base_bg);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px 30px;
}

.form-container .title {
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 30px 0;
  font-size: 28px;
  font-weight: 800;
}

.form-container .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.form-container .input {
  border-radius: 20px;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  box-sizing: border-box;
  padding: 12px 15px;
}

.form-container .page-link {
  text-decoration: underline;
  margin: 0;
  text-align: end;
  color: #747474;
  text-decoration-color: #747474;
}

.form-container .page-link-label {
  cursor: pointer;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.form-container .page-link-label:hover {
  color: #000;
}

.form-container .form-btn {
  padding: 10px 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: teal;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-container .form-btn:active {
  box-shadow: none;
}

.form-container .sign-up-label {
  margin: 0;
  font-size: 10px;
  color: #747474;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.form-container .sign-up-link {
  margin-left: 1px;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: teal;
  color: teal;
  cursor: pointer;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.form-container .buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}