/* General Body Styling */


/* Center Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Form Container */
.form-container {
    background-color: #e0e0e0;
    padding: 30px 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Individual Form Box */
.form-box {
    text-align: center;
}

/* Form Headings */
.form-box h2 {
    color: #0a686b;
    margin-bottom: 20px;
}

/* Form Text Labels */
.form-box p {
    text-align: left;
    color: black;
    font-weight: 500;
    margin: 10px 0 5px;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    padding: 0 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

/* Password Toggle Eye Icon */
span#eyeToggleLogin,
span#eyeToggleSignup {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

span#eyeToggleLogin:hover,
span#eyeToggleSignup:hover {
    opacity: 1;
}

/* Submit Button */
.user_btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #0a686b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

/* Error Message */
.error-msg {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* Toggle Links (e.g. Register / Forgot Password) */
.toggle {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
}
