.login-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    padding: 40px 5% 10px 5%;
    gap: 40px;
}
.header-texts{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.header-title{
    color: #00aa6c;
}
.header-short-text{
    color: #000000;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 300;
}
.text{
    color: #333333;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 300;
}
.header-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-right: 25%;
    cursor: pointer;
}
.contact-btn{
    text-decoration: none;
    color: #ffffff;
    background-color: #00aa6c;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}
.information-btn{
    text-decoration: none;
    color: #00aa6c;
    border-bottom: 1px solid #00aa6c;
}
.login-register{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 5% 10px 5%;
    gap: 20px;
    margin-bottom: 20%;
}
.login-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
}
.text .p-link{
    color: #00aa6c;
}
.login-form input{
    background-color: #ffffff;
    border: 1px solid #8c8c8c;
    border-radius: 12px;
    padding: 2%;
    width: 100%;
    height: 40px;
}
.login-form button{
    background-color: #00aa6c;
    color: #ffffff;
    border-radius: 12px;
    width: 100%;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
}
.register-btn{
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    transition: all ease-in-out 400ms;
    cursor: pointer;
}
.register-btn:hover{
    color: #00aa6c;
}
.register{
    display: none;
}