table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff; /* White background for table */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-radius: 8px; /* Rounded corners */
}

/* Style the table cells */
td {
    padding: 12px 20px;
    text-align: left;
    font-size: 18px; /* Increase text size */
}

/* Style the input fields */
input[type="email"], input[type="password"], input[type="text"] {
    position: relative;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    z-index: 1;
    visibility: visible;
}

/* Style the submit button */
.lgnbtn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 14px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

/* Button hover effect */
.lgnbtn:hover {
    background-color: #45a049;
}

/* Style the message below the form */
.registration-link {
    margin-top: 20px;
    font-size: 16px;
}

.registration-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.registration-link a:hover {
    text-decoration: underline;
}