@import url(bootstrap.min.css);
@import url(font-awesome/css/font-awesome.min.css);
/* Reset some basic styles */
body, p, div, a, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styles */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f1f1f1;
    font-family: 'Open Sans', sans-serif;
}

/* Logo container styling */
.logo-container {
    margin-bottom: -40px; /* Adjust this value as needed to move the logo closer to the form */
    z-index: 10; /* Ensure the logo stays above the container */
}

/* Logo styling */
.logo-container img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}
/* Login title */
.login-title {
    text-align: left;
}
/* Container styling */
.login-container {
    background: #fff;
    padding: 40px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 320px;
    text-align: center;
    position: relative;
}

/* Input field container styling */
.input-container {
    position: relative;
    margin: 10px 0;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
}

/* Input field styling */
.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px 10px 10px 40px; /* Add padding to the left to make space for the icon */
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Button styling */
.login-button {
    float: right;
}

/* Link styling */
.login-container a {
    display: block;
    margin: 10px 0;
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.login-container a:hover {
    text-decoration: underline;
}

/* Form links styling */
.form-links {
    display: flex;
    justify-content: space-between;
}

.login-footer {
    font-weight: bold;
    font-size: 10px;
}