@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Jost:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --shopus-primary: #AE1C9A;
    --shopus-dark: #232532;
    --shopus-muted: #797979;
    --shopus-white: #FFFFFF;
    --shopus-body: #f8f8f8;
}

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

html {
    font-size: 10px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--shopus-dark);
    background: var(--shopus-body);
    line-height: 1.6;
}

h5 {
    font-family: "Jost", sans-serif;
    font-size: 3rem;
    margin-bottom: 0;
}

a {
    color: var(--shopus-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--shopus-primary);
}

p {
    font-size: 1.5rem;
    color: var(--shopus-muted);
    font-family: "Inter", sans-serif;
}

label {
    font-family: "Jost", sans-serif;
    font-size: 1.5rem;
    color: var(--shopus-muted);
}

input,
select,
button {
    font-family: "Inter", sans-serif;
}

button {
    border: none;
    outline: none;
    background: transparent;
}

input[type="checkbox"] {
    accent-color: var(--shopus-primary);
}

.footer-padding {
    padding-bottom: 8rem;
}

.login {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(174, 28, 154, 0.08), rgba(174, 28, 154, 0.02));
}

.login-section {
    display: flex;
    justify-content: center;
}

.auth-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-brand img {
    max-height: 6rem;
}

.auth-brand span {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--shopus-dark);
}

.login-section .review-form {
    width: 100%;
    max-width: 53rem;
    background: var(--shopus-white);
    border-radius: 0.5rem;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(174, 28, 154, 0.08);
}

.login-section .review-form .comment-title {
    text-align: center;
    margin: 1rem 0 3rem;
}

.login-section .review-form .review-inner-form {
    display: block;
    width: 100%;
}

.login-section .review-form .shop-btn {
    width: 100%;
    margin: 2.5rem 0 1.5rem;
}

.login-section .review-form .shop-account {
    display: block;
    text-align: center;
    color: var(--shopus-muted);
    font-size: 1.3rem;
}

.login-section .review-form .shop-account a {
    color: var(--shopus-primary);
    font-weight: 500;
    margin-left: 0.4rem;
    font-size: 1.3rem;
}

.review-form {
    margin-top: 2rem;
}

.review-form .review-inner-form {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-form .review-inner-form .review-form-name {
    width: 100%;
}

.review-form .form-control,
.review-form .form-select {
    border: 1px solid rgba(174, 28, 154, 0.12);
    box-shadow: none;
    color: var(--shopus-dark);
    height: 5rem;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
}

.review-form .form-control:focus,
.review-form .form-select:focus {
    border-color: rgba(174, 28, 154, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(174, 28, 154, 0.1);
}

.review-form .form-control::placeholder {
    color: var(--shopus-muted);
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.checkbox .forget-pass a,
.checkbox .forget-pass p {
    color: var(--shopus-primary);
    font-size: 1.4rem;
    margin: 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-item .address,
.checkbox-item p {
    margin: 0;
    font-size: 1.4rem;
}

.checkbox-item .inner-text {
    color: var(--shopus-dark);
}

.shop-btn {
    padding: 1.2rem 3.4rem;
    border-radius: 3rem;
    display: inline-block;
    background: var(--shopus-primary);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--shopus-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.shop-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--shopus-dark);
    z-index: -1;
    transition: width 0.35s ease-in-out;
}

.shop-btn:hover::after {
    width: 100%;
}

.shop-btn:hover {
    color: var(--shopus-white);
}

.shop-btn:focus {
    outline: none;
    color: var(--shopus-white);
}

.account-section .review-form {
    max-width: 60rem;
}

.account-section .account-inner-form {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.account-section .review-form-name {
    flex: 1 1 22rem;
}

.account-section .address-form {
    margin: 2rem 0;
}

.account-section .shop-btn {
    margin-top: 3rem;
}

@media (max-width: 767px) {
    html {
        font-size: 9px;
    }

    .login {
        padding: 4rem 0;
    }

    .login-section .review-form {
        padding: 3rem 2rem;
    }

    .checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .account-section .account-inner-form {
        flex-direction: column;
    }

    .account-section .review-form-name {
        width: 100%;
    }
}
