﻿

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 100%;
}

.loginbox {
    position: absolute;
    background-color: #041a49 !important;
    height: 506px;
    width: 350px;
    color: white;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    border-radius: .5rem;
    .formsection{
    padding:.5rem 0rem;
}
.loginbody{
    background-image:url(../Images/bgrepeat.jpg);
    background-repeat:repeat;
}
.field-validation-error{
    color:red;
}

/* Consistent styling with the Index page */
body {
    font-family: 'Inter', sans-serif;
    padding: 20px; /* Keep padding for overall page content */
    background-color: #f8f9fa; /* Keep background color for overall page content */
}

.container-fluid {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px; /* Add some top margin for spacing */
    margin-bottom: 20px; /* Add some bottom margin for spacing */
}

h2 {
    color: #343a40;
    margin-bottom: 25px;
    font-weight: 600;
}

hr {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}
/* Specific styles for form elements */
.col-form-label {
    font-weight: 500;
    color: #495057;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}