form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;    
}

form label {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
}

form input, form textarea {
    font-size: 14px;
    font-family: "Mulish", sans-serif;
    padding: 5px 10px;
    background-color: #5b455b;
    border-style: solid;
    border-width: 1.5px;
    border-color: #826586;
    border-radius: 10px;
    color: white;
}

form button {
    background-color: #7c2c82;
    color: white;
    border-style: solid;
    border-width: 1.3px;
    border-color: #826586;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.auth-zone {
    padding: 25px;
    background-color: #8b728b40;
    border-radius: 15px;
    margin: 100px auto;

    @media screen and (max-width: 1000px) {
        max-width: 100%;
    }
    @media screen and (min-width: 1001px) {
        max-width: 30%;
    }
}

.logo {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 40px;
}

.logo h1 {
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.swither-log {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.swither-log h2 {
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.swither-log a {
    font-size: 14px;
}

.first-screen,
.second-screen,
.third-screen {
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, max-height 260ms ease;
}

.first-screen.active,
.second-screen.active,
.third-screen.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 1200px;
  pointer-events: auto;
}

.standard-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

input:focus-visible {
    outline: none;
}

.drop-zone {
    position: relative;
    display: flex;
    margin: 0 auto;
    margin-bottom: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    max-height: 50vh;
    gap: 25px;
    aspect-ratio: 1.37;
    border-style: solid;
    border-width: 1.5px;
    border-color: #826586;
    background-color: #8b728b40;
    border-radius: 25px;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 200;
    text-align: center;
    filter: drop-shadow(0px 4px 4px rgb(45 32 43 / 75%));
    cursor: pointer;
}

.cover-drop-zone .cover-preview {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    z-index: -1;
}

.drop-zone.dragover {
    background-color: #8b728b80;
}

.remember-me {
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}

.auth-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-button {
    display: flex;
    margin: 10px auto;
    padding: 12px 20px;
    border-radius: 15px;
}

.code-button {
    padding: 5px 10px;
    border-radius: 10px;
}

.info-message {
  color: #e6d9ff;
  font-size: 13px;
  margin-top: 6px;
}

.error {
  color: #ffb3b3;
  font-size: 13px;
  margin-top: 6px;
}
