 /* Main container — matches .sign-up design */
.customer-sign-in-sign-up {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 45px;
    background-color: #fff;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 40px;
    box-sizing: border-box;
    gap: 20px;
    text-align: left;
    font-size: 14px;
    color: #464646;
    font-family: Mulish;
}

/* Login title — matches .sign-up2 */
.log-in {
    width: 100%;
    font-size: 32px;
    font-family: Baloo;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 10px;
}

/* Subheading */
.please-enter-your {
    width: 100%;
    line-height: 18px;
    color: #565656;
    text-align: center;
}

/* FORM */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Input field wrapper — matches signup */
.input-field-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-field {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Input fields — unified with signup */
.input-field-inner {
    width: 100%;
    border-radius: 25px;
    background-color: #fff;
    border: 1px solid #eaecf0;
    box-sizing: border-box;
    padding: 14px 19px;
    font-size: 14px;
    color: #464646;
    font-family: Mulish;
    outline: none;
}

.input-field-inner:focus {
    border-color: #f46262;
}

/* Errors */
.error {
    color: #f46262;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 10px;
}

.error-input {
    border-color: #f46262 !important;
}

/* Alert messages */
.alert {
    width: 100%;
    padding: 12px 19px;
    border-radius: 25px;
    font-size: 14px;
}

.alert-error {
    background-color: #ffe5e5;
    color: #f46262;
    border: 1px solid #f46262;
}

.alert-success {
    background-color: #e5ffe8;
    color: #2e8b57;
    border: 1px solid #2e8b57;
}

/* Divider */
.auto-layout-horizontal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}

.themelight-divider {
    flex: 1;
    height: 1px;
    position: relative;
}

.line {
    width: 100%;
    border-top: 1px solid #eee;
    box-sizing: border-box;
    height: 1px;
}

.or-continue-with {
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 140%;
    padding: 0 10px;
}

/* LOGIN button — unified with signup */
.sign-in-button-wrapper {
    width: 100%;
    margin-top: 10px;
}

.sign-in-button {
    width: 100%;
    height: 58px;
    position: relative;
    border: none;
    cursor: pointer;
    padding: 0;
    background: transparent;
}

.sign-in-button-child {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 25px;
    background-color: #f46262;
    z-index: 1;
}

.button {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-family: Mulish;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.sign-in-button:hover .sign-in-button-child {
    background-color: #e94b4b;
}

/* SIGN UP grey button */
.button2 {
    position: relative;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    z-index: 2;
}

.sign-in-button-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #a6a6a6;
    z-index: 1;
}

/* Responsive — same as signup */
@media (max-width: 768px) {
    .customer-sign-in-sign-up {
        max-width: 100%;
        padding: 30px 25px;
        border-radius: 30px;
        margin: 10px;
    }

    .log-in {
        font-size: 28px;
    }

    .input-field-inner {
        padding: 12px 16px;
    }

    .button {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .customer-sign-in-sign-up {
        padding: 25px 15px;
        border-radius: 25px;
        gap: 16px;
    }

    .log-in {
        font-size: 24px;
    }

    .input-field-inner {
        padding: 12px 15px;
        font-size: 13px;
    }

    .auto-layout-horizontal {
        gap: 10px;
    }

    .button {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .customer-sign-in-sign-up {
        padding: 20px 12px;
    }

    .log-in {
        font-size: 22px;
    }

    .input-field-inner {
        padding: 10px 12px;
        font-size: 12px;
    }
}
