.content-wrapper
{
    flex: 1; /* Occupies all space between header and footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card
{
    background-color: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Ensures tabs match card corners */
}

/* Form Styling */
.card-body
{
    padding: 40px;
}

h2
{
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.5rem;
}

.input-group
{
    margin-bottom: 20px;
}

.input-group label
{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.input-wrapper
{
    position: relative;
}

.input-wrapper i
{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-wrapper input
{
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-wrapper input:focus
{
    outline: none;
    border-color: #90ee90;
}

/* The primary action button */
.login-submit
{
    width: 100%;
    padding: 14px;
    background-color: #00ff69;
    border: none;
    border-radius: 6px;
    color: #333333;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
    box-shadow: 0 4px 0 #00cc54;
}

.login-submit:hover
{
    background-color: #76d676;
}

.form-footer
{
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #777;
}

.form-footer a
{
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
