/* ------------------- Toggles for Login/Register ------------------- */
.account-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 5px;
    background-color: #F8F7F2;
    padding: 5px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.account-tab {
    width: 100%;
    max-width: 242.5px;
    background: none;
    border: none;
    padding: 10px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 20px;
	margin-bottom:0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1B1918;
    text-decoration: none !important;
    border-radius: 0; /* Sharp edges */
}
.account-tab:hover {
    background: #fff !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2) !important;
}
.account-tab.active {
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.woocommerce-page form .password-input{
	position:relative;
}
.woocommerce form .show-password-input::before, .woocommerce-page form .show-password-input{
	background-color:#fff;
	position:absolute;
	display:flex;
	top:0;
	right:0;
	align-items:center;
	padding:0;
	width:50px;
	height:100%;
	justify-content:center;
}
.woocommerce-page form .input-text{
	max-width:unset;
}
.woocommerce form .show-password-input::before, .woocommerce-page form .show-password-input::before{
	    background-repeat: no-repeat;
    background-size: cover;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z' fill='%23111111'/%3E%3C/svg%3E");
    content: "";
    display: block;
    height: 22px;
    width: 22px;
}
.account-form {
    display: none;
}
.account-form.active {
    display: block;
}
@media (max-width: 1024px) {
    .account-tab {
        font-size: 16px;
    }
}
@media (max-width: 400px) {
    .account-tab {
        font-size: 12px;
    }
}

/* ------------------- Login & Register Forms ------------------- */
.woocommerce-form-login,
.woocommerce-form-register {
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-register input[type="email"],
.woocommerce-form-register input[type="password"] {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #1B1918 !important; 
    padding: 8px 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 27px;
    color: #1B1918;
    background: transparent;
    outline: none;
    transition: border-bottom 0.1s ease-in-out;
    border-radius: 0 !important;
}
.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
    border-bottom: 2px solid #1B1918 !important; 
}
.woocommerce-form-login input::placeholder,
.woocommerce-form-register input::placeholder {
    color: #1B1918;
    opacity: 0.5; 
}

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 10px; 
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #1B1918;
}

.woocommerce-form-login .woocommerce-form__input-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #1B1918;
    background-color: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
    border-radius: 0;
}

.woocommerce-form-login .woocommerce-form__input-checkbox:checked {
    background-color: #1B1918; 
    border-color: #1B1918; 
}

.woocommerce-form-login .woocommerce-form__input-checkbox:checked::after {
    content: "✔"; 
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-register__submit {
    width: 100%;
    background: #1B1918;
    color: white;
    padding: 14px;
	font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

.woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-form-register .woocommerce-form-register__submit:hover {
    opacity: 0.7;
    text-decoration: none;
}

.woocommerce-LostPassword {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-LostPassword a {
    color: #1B1918;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.woocommerce-LostPassword a:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* ------------------- Privacy Policy Text ------------------- */
.woocommerce-privacy-policy-text p {
    font-family: "Poppins", sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    color: #808080 !important;
    text-align: left !important;
    margin-top: 10px !important;
    margin-bottom: 30px !important;
}

.woocommerce-privacy-policy-text a {
    color: #1B1918;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.woocommerce-privacy-policy-text a:hover {
    color: var(--akcentine1);
}





