:root {
    --text: #F5F1FB;
    --muted: #AAA3BC;
    --highlight: #B79CFF;
    --radius-big: 28px;
    --radius-mid: 14px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    font-family: "Inter";
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    background: #000000;
}

.main-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    margin: 30px;
    width: 980px;
    display: flex;
    background-image: linear-gradient(180deg, rgba(35, 28, 50, 0.96), rgba(25, 20, 39, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-big);
    overflow: hidden;
}

.auth-cover {
    width: 48%;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url(assets/img/auth-card-cover.png);
    background-size: cover;
}

.brand {
    margin: 30px;
    font-size: 16px;
    font-weight: 700;
}

.cover-content {
    margin: 30px;
}

.content-eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.content-headline {
    margin-top: 5px;
    font-size: 24px;
    font-weight: 700;
}

.content-text {
    margin-top: 5px;
    width: 280px;
    color: var(--muted);
}

.auth-form {
    width: 52%;
    height: inherit;
}

.auth-container {
    margin: 100px 80px;
}

.auth-head {
    padding-bottom: 10px;
    width: 100%;
}

.eyebrow {
    font-weight: 600;
    color: var(--muted);
}

.headline {
    margin-top: 5px;
    font-size: 32px;
}

.underline {
    margin-top: 10px;
    color: var(--muted);
}

.auth-link {
    font-weight: 600;
    color: var(--highlight);
}

.form {
    margin-top: 20px;
    width: 100%;
}

.form p {
    font-weight: 500;
}

.form input {
    margin-top: 10px;
    padding: 0 15px;
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-mid);
}

.auth-action {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.auth-action input {
    margin-top: 20px;
    width: 100%;
    height: 45px;
    font-weight: 700;
    color: var(--text);
    background-image: linear-gradient(180deg, rgba(145, 111, 255, 1), rgba(119, 84, 245, 1));
    border: none;
    border-radius: var(--radius-mid);
}