@font-face {
  font-family: "title";
  src: url("../fonts/ADLaMDisplay-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "main";
    src: url("../fonts/IstokWeb-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "main";
    src: url("../fonts/IstokWeb-Italic.ttf");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "main";
    src: url("../fonts/IstokWeb-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "main";
    src: url("../fonts/IstokWeb-BoldItalic.ttf");
    font-weight: 700;
    font-style: italic;
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}
body{
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
/*container*/
#loginContainer{
    padding: 0.5rem 4rem 1.5rem 4rem;
    border-radius: 3.125rem;
    box-shadow: 0 0.625rem 1rem black;
    margin: 1rem auto; 
    background-color: rgba(255, 255, 255, 0.26);
    color: rgb(112, 129, 119);
    background-repeat: no-repeat;
    width: 80%;
    max-width: 47.5rem;
}
/*container*/

/*header*/
.logo {
    display: block;
    margin: 0 auto 0.3rem auto;
    width: 3.5rem;
    height: auto;
    mix-blend-mode: multiply
}
.form-title{
    font-weight: bold;
    text-align: center;
    padding: 0.3rem;
}
#title{
    color: rgb(255, 255, 255);
    font-family: "title", sans-serif;
    font-size: 2.2rem;
}
#subtitle{
    color: rgb(144, 245, 141);
    font-family: "main", serif;
    font-size: 2rem;
}
/*header*/

/*body*/
.input-group{
    padding: 0.5% 0;
    position: relative;
    display: flex;
    flex-direction: column;  
    align-items: center;
}
input:focus{
    background-color: rgba(234, 234, 234, 0.619);
    outline: transparent;
}
input::placeholder{
    color: black;
    font-size: 1.1rem;
    font-family: "main", serif;
    opacity: 0.4; 
}
input{
    color: black;
    width: 100%;
    height: 2.75rem;
    background-color: rgb(234, 234, 234);
    border: none;
    border-radius: 0.9375rem;
    padding: 0.25rem;
    padding-left: 1.75rem;
    font-size: 1.1rem;
}
label{
    color: #f8fffe;
    position: relative;
    transition: 0.3s ease all;
    margin: 0.3rem;
    font-size: 1.3rem;
    font-family: "main", serif;
}
.btn {
    font-size: 1.3rem;
    border-radius: 0.3125rem;
    border: none;
    width: 50%;
    background: #27712c;
    color: white;
    cursor: pointer;
    transition: 0.7s;
    display: block;
    margin: 1.2rem auto 0;
    padding: 0.3125rem 0.625rem;
}
.btn:hover{
    background: rgb(6, 72, 5);
}
/*body*/

/*footer*/
.form-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #f8fffe;
    font-family: "main", serif;
    font-size: 1.1rem;
}

.form-link a {
    color: rgb(144, 245, 141);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.form-link a:hover {
    color: rgb(220, 252, 209);
    text-decoration: underline;
}
/*footer*/