* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body{
    position: relative;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    /* background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../images/sgth_background/sgth_background.jpg); */
}

.login-container {
    background: #00000091;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: #fff;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group  .font-icons {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid blue;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.input-group input:focus {
    border-color: #007bff;
}

.input-group input:focus + i {
    color: #007bff;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

.forgot-password a {
    margin-top: 20px;
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #0056b3;
}

.error-message{
    color: red;
    position: absolute;
    left: 0;
    top: -45%
}



/* To override some of the normal header in login file, instead of changing everything from scratch */
.header-for-rest-of-pages{
    height: 100%;
}
.text-box-for-rest-of-pages{
    display: none;
}