.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;
    color: #8b728b;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;    
}

form input {
    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 label {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
}

.standard-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

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-button {
    display: flex;
    margin: 10px auto;
    padding: 12px 20px;
    border-radius: 15px;
}

.code-button {
    padding: 5px 10px;
    border-radius: 10px;
}

input:focus-visible {
    outline: none;
}

.remember-me {
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}