* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: rgb(112,201,160);
    background: linear-gradient(90deg, rgba(112,201,160,1) 0%, rgba(247,249,248,1) 50%, rgba(112,201,160,1) 100%);
    margin: 0;
    padding: 0;
    height: 100vh;
}

.login-container {
    background: url('/assets/img/background-pattern.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    width: 100%;
  }

.login-box {
    background-color: #90A955;
    padding: 40px;
    padding-top: 120px;
    width: 100%;
    max-width: 460px;
    height: 100%;
  }

.inputgroup {
    position: relative;
}

.logininput {
    height: 55px;
    border-radius: 30px;
    padding-left: 65px;
}

.logininput:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 253, 145, 0.246);
}

.inputgroup img {
    position: absolute;
    top: 2.5px;
    bottom: 2.5px;
    left: 4px;
}

.btn-green{
    color: #fff;
    height: 45px;
    background-color: #005730;
    border-color: #005730;
    font-size: 24px;
    line-height: 15px;
    border-radius: 25px;
}

.btn-green:hover {
    color: #fff;
    background-color: #016F3E;
    border-color: #016F3E;
}