body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(login-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* body inner container with background color opacity  */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgb(0 0 0 / 99%), rgb(171 171 171 / 0%));
    z-index: -1; /* Ensure it is behind other content */
}


.wrapper {
    max-width: 900px;
    margin: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content {
    padding: 2.5rem;
}

.logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    color: #111827;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-login,
.btn-primary {
    background: #1f883d;
    color: #ffffffff;
}

.btn-login:hover,
.btn-primary:hover {
    background: #13682bff;
}

h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

a {
    color: #0969da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul li {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer {
    background: #f9fafb;
    color: #4b5563;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.875rem;
}

.footer a {
    color: #0969da;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.col {
    flex: 1;
    min-width: 250px;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}