/* login.css - Custom login styles */
#tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.tab-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: #f4f4f4;
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
    border-radius: 8px 8px 0 0;
}

.tab-button.active {
    background-color: #006f8a;
    color: white;
}

.tab-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 400px;
}

form table {
    width: 100%;
    border-spacing: 0;
    margin-bottom: 20px;
}

form table input[type="text"],
form table input[type="email"],
form table input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

form button {
    background-color: #006f8a;
    color: white;
    padding: 10px 15px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background-color: #004e63;
}

.lost_password {
    text-align: center;
}
