body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.auth-wrapper {
    display: grid;
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}
.auth-form {
    padding: 40px;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.logo-wrapper img {
    width: 80px;
}
.logo-wrapper h2 {
    font-size: 30px;
}
.form-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.resend-section {
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
    gap: 5px;
    justify-content: center;
}
.auth-form .resend-section input {
    font-family: Rubik;
    border: none;
    background: unset;
    padding: 0 !important;
    font-size: 14px !important;
    width: fit-content !important;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
}
.form-detail p {
    font-size: 14px;
    text-align: center;
    color: #4A5568;
}
.form-title {
    text-align: center;
    font-size: 20px;
}
.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}
.auth-form form input {
    padding: 12px;
}
.auth-form.verification .form-field input {
    text-align: center;
    letter-spacing: 20px;
    font-size: 18px;
}
.auth-form form .error input {
    border-color: var(--red);
}
.auth-form #submit-button {
    width: 100%;
    padding: 12px;
}
.shape {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    opacity: 0.2;
    position: absolute;
    filter: blur(120px);
}
.shape.right {
    background-color: var(--primary);
    right: 0;
    bottom: 0;
}
.shape.left {
    background-color: var(--yellow);
    left: 0;
    top: 0;
}
.actions-button {
    display: grid;
    gap: 20px;
    align-items: center;
}
a.button {
    color: var(--textColor);
}
.group-selection {
    display: flex;
    align-items: center;
    gap: 20px;
}