:root {
    --first-color: #0b0019;
    --second-color: #6900ff;
    --third-color: #f4f4f4;
    --fourth-color: #a19fa0;
    --fifth-color: #e6e6e6;
    --white: #fff;
    --orange: #f97316;
}

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

body {
    font-family: "Poppins", serif;
}

.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.left-card {
    border: 0;
    border-radius: 0;
    background-color: transparent;
    max-width: 700px;
}
.left-card img {
    width: 100%;
}
.right-card {
    border: 0;
    border-radius: 0;
    background-color: transparent;
    max-width: 480px;
    margin-left: auto;
}
.right-card .auth-logo {
    text-align: center;
    margin-bottom: 30px;
}
.right-card .title {
    margin-bottom: 60px;
    text-align: center;
}
.right-card .title h3 {
    margin: 0;
    color: var(--first-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
}

.right-card .title p {
    margin: 0;
    color: var(--first-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.right-card form label {
    color: var(--second-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
}
.right-card form input {
    border-radius: 8px;
    border: 1px solid var(--third-color);
    padding: 14px 16px;
    background: var(--white);
    min-height: 48px;
    color: var(--first-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    transition: 0.5s;
}
.right-card form input:focus {
    border-color: var(--second-color);
    box-shadow: none;
}
.right-card form .custom-group {
    position: relative;
}
.right-card form .custom-group i {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 14px;
}

.right-card form .links a,
.right-card form .links button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    font-family: "Manrope", serif;
    border: 0;
}
.right-card form .links a.btn-login,
.right-card form .links button.btn-login {
    background: var(--second-color);
}
.right-card form .links a.btn-signup,
.right-card form .links button.btn-signup {
    background: var(--orange);
}
.custom-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
    font-family: "Manrope", serif;
}
.custom-divider::before,
.custom-divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid var(--fourth-color);
    opacity: 0.5;
}
.custom-divider span {
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    color: var(--fourth-color);
    text-transform: capitalize;
}
.custom-divider::before {
    margin-right: 0.5rem;
}
.custom-divider::after {
    margin-left: 0.5rem;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.social-links a {
    display: flex;
    width: 100%;
    min-height: 42px;
    padding: 11px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--fifth-color);
    background: var(--white);
    text-decoration: none;
    font-family: "Manrope", serif;
}
.extra-text {
    color: #141313;
    font-family: "Manrope", serif;
    font-size: 14px;
    font-weight: 500;
}
.extra-text a {
    color: #ea580c;
    text-decoration-line: underline;
}
@media (max-width: 575.98px) {
    .social-links {
        flex-direction: column;
    }
}
