body {
 background-color: rgb(255, 255, 255);
 text-align: center;
}

.mainBody {
    font-family: "Open Sans", sans-serif;
}

.loginForm {
    margin: auto;
    width: fit-content;
}

.logo_header img {
    height: 100px;
    width: auto;
}

.loginBody {
    height: auto;
    padding: 10px 30px 25px;
    /* width: 25%; */
    margin: auto auto;
    border-radius: 20px;
    border: 2px solid #863e15;
    background-color: #fef5d23b;
}

.title{
    margin: 0px !important;
}

.title h4 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #863e15;
    margin: 0 auto;
    width: fit-content;
}

.title p {
    font-size: 12px;
    margin: 10px 0 20px 0;
    color: #863e15;
    text-align: center ;
}

.userInput {
    text-align: left;
}

 label {
    display: block;
    margin: 0 0 5px 0;
}

input {
    width: 90%;
    padding: 6px 5px 6px 10px;
    font-family: inherit;
    border: 1px solid #863e15;
    border-radius: 6px;
    background: #fefefe;
    color: #441e09;
    font-weight: 500;
}

input[type=text]:focus, input[type=password]:focus {
    outline: none;
    border: 2px solid #863e15;
}

input::placeholder {
  font-style: italic;
  color: #863e1587;
}

.passInput {
    text-align: left;
}

.Loginrow {
    margin: 10px 0 0 0px;
    text-align: left;
}

.loginBtn {
    width: fit-content;
    margin: auto;
    margin-top: 25px;
    font-family: inherit;
}

button {
    background-color: white;
    border: none;
    color: #863e15;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 0px;
    cursor: pointer;
    border-radius: 7px;
    border: 2px solid #863e15;
}

button:hover {
    background-color: #863e15;
    color: white;
    transition: 0.3s;
}