@font-face {
    font-family: 'WF Visual Sans';
    src: url('./font/WFVisualSansVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Overall section with a white background */
.signup-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* White container that holds the sign-up content */
.signup-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 30px;
    margin: 0 auto;
}

/* Left aligned title */
.signup-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

/* Left aligned labels */
.signup-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Equal spacing for all input fields */
.input-wrapper {
    margin-bottom: 15px; /* Ensures equal spacing */
    position: relative;
}

/* Input field styling */
.signup-container input[type="text"],
.signup-container input[type="email"],
.signup-container input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Sign Up button styling */
.signup-button1 {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.signup-button1:hover {
    background-color: #0056b3;
}

/* Error message styling */
.error-message {
    color: red;
    font-size: 12px;
    min-height: 14px;
    visibility: hidden;
    margin-top: 3px;
}

/* "Already have an account?" text */
.signup-account {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}

/* Ensure uniform input heights */
.signup-container input[type="text"],
.signup-container input[type="email"],
.signup-container input[type="password"],
.signup-button {
    box-sizing: border-box;
    height: 42px;
}

/* Updated Password Strength Indicator without absolute positioning */
#password-strength-indicator {
    display: block;
    margin-top: 3px;
    font-size: 12px;
}
