/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #d0e1f9; /* Soft blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* Neumorphic Card Styling */
form, .content, .table-container {
    background-color: #d0e1f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 9px 9px 16px #a3b1c6, -9px -9px 16px #ffffff;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Flexbox layout to fix alignment */
.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper .form-container {
    width: 45%;
}

.wrapper .table-container {
    width: 50%;
}

/* Input Fields */
input[type="text"], input[type="password"], input[type="number"], input[type="date"], button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 15px;
    background-color: #d0e1f9;
    box-shadow: inset 6px 6px 12px #a3b1c6, inset -6px -6px 12px #ffffff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus {
    box-shadow: inset 3px 3px 6px #a3b1c6, inset -3px -3px 6px #ffffff;
}

/* Button Styling */
button {
    background-color: #5cb85c;
    color: white;
    cursor: pointer;
    box-shadow: 6px 6px 12px #a3b1c6, -6px -6px 12px #ffffff;
    transition: 0.3s;
    font-size: 16px;
}

button:hover {
    background-color: #4cae4c;
}

/* Neumorphic Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #d0e1f9;
    border-radius: 15px;
    box-shadow: 9px 9px 16px #a3b1c6, -9px -9px 16px #ffffff;
}

table, th, td {
    padding: 15px;
    text-align: center;
    color: #333;
}

th {
    background-color: #c0d8f0;
    border-radius: 15px;
}

td {
    background-color: #e0f0ff;
    border-radius: 15px;
}

/* Container for forms and tables */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

/* Additional Text Styling */
p, label {
    color: #333;
    font-size: 16px;
}

h2, h3 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

/* Fix alignment for sign up link */
.login-footer {
    text-align: center;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    form, table, .content {
        width: 90%;
    }
}
