/* ----------------------------- */
/* ==Signup css                */
/* ----------------------------- */

.signup {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px 30px;
}
.signup .login-link {
    font-weight: 700;
    margin: 30px 0;
    font-size: 16px;
}
.signup .login-link a {
    color: #a71273;
}
.signup .signup-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 35%;
    gap: 10px 2%;
}
.signup h2 {
    margin-bottom: 30px;
}

.password-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Primary button design */
.btn.primary {
    background: #ffffff;
    color: #a71273;
    border: 2px solid #a71273;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn.primary:hover {
    background: #a71273;
    color: #ffffff;
    border-color: #a71273;
}

/*BreakPoint Tablet & Mobile */
@media screen and (max-width: 1365.98px) {
    .signup {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*BreakPoint Tablet*/
@media screen and (min-width: 768px) and (max-width: 1365.98px) {
    .signup .signup-form {
        width: 50%;
    }
}

/*BreakPoint Mobile*/
@media screen and (max-width: 767.98px) {
    .signup {
        justify-content: flex-start;
    }
    .signup h2 {
        margin-bottom: 15px;
    }
    .signup .login-link {
        text-align: center;
        margin: 15px 0;
        line-height: 1.4;
    }
    .signup .login-link a {
        display: block;
    }
    .signup .signup-form {
        width: 100%;
    }
}