/* styles.css */
body, html {
    margin: 0;
    padding: 0;/* Bootstrap sets the font to system default, you can override it here */
    background-image: url('1_Login.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family:"Montserrat";
}

.login-container {
    /* width: 350px; Adjust the width as needed */
    width: auto;
}

header .img{
    width: 100px;
}


.form-control-left-position{
    font-size: 22px;
    position: absolute;
    top: 2px;
    left: 8px;
    z-index: 2;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 3.2rem;
    text-align: center;
    /* padding: 10px; */
}

input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }

label {
    position: relative;
    cursor: pointer;
    margin: 0px;
    color: rgb(125, 125, 125);
  }

.form-floating>.form-control:not(:placeholder-shown)~label::after{
     background-color: rgba(255, 255, 255, 0);
}
.form-floating>.form-control:focus~label::after{
    background-color: rgba(255, 255, 255, 0);
}

.form-control-position {
    font-size: 22px;
    position: absolute;
    top: 2px;
    /* left: 8px; */
    z-index: 2;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 3.2rem;
    text-align: center;
    right: 10px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ff0000;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(253, 13, 89, 0);
}

.form-check-input:checked {
    background-color: #ff000061;
    border-color: #ff0000;
}

.form-check-input:focus {
    border-color: #ff0000;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(253, 13, 89, 0);
}

