@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

body{
    margin: 0;
    font-family: "Kdam Thmor Pro", sans-serif ;
    background-color: #1f1f1f;
    color: white;
}

input,
button,
textarea,
select {
    font-family: "Kdam Thmor Pro", sans-serif;
}


.topbar {
    background-color: #00752D;
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 0;
    font-size: 11px;
    height: 20px;
    align-items: center;
}

.menubar {
    background-color: #098B3B;
    display: flex;
    align-items: center;
    padding: 0 50px 0 0;
    height: 55px;
}

.logoBox {
    background-color: #00752D;
    width: 120px;
    height: 75px;
    margin-top: -20px;
    margin-right: 5px;
    padding-left: 8px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.logoBox h1 {
    margin: 0;
    font-size: 52px;
    line-height: 50px;
}

.logoBox p {
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 14px;
}

.logoLink {
    color: white;
    text-decoration: none;
}

.menuLinks {
    display: flex;
    gap: 0;
    align-items: center;
}

.menuLinks a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-right: 1px solid #00752D;
    width: 190px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBox {
    margin-left: auto;
}

.loginBox a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginBox i {
    font-size: 22px;
    margin-bottom: 2px;
}

.background {
    background-image: url("../images/blurredbackground.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 75px);

    display: flex;
    justify-content: center;
    align-items: center;
}

.signinContainer {
    width: 95%;
    max-width: 650px;
    background-color: #1c1c1c;
    border: 1px solid #767676;
    padding: 25px 25px;
    box-sizing: border-box;

    transform: scale(0.85);
    transform-origin: center;
}

.logoBoxLoginBox {
    background-color: #00752D;
    width: 60%;
    max-width: 260px;
    height: 120px;
    border: 1.5px solid #d9d9d9;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px auto;
}


.logoBoxLoginBox h1 {
    margin: 0;
    font-size: 52px;
    line-height: 60px;
}

.logoBoxLoginBox p {
    font-size: 24px;
    margin: 0;
}

.welcomeText{
    font-size: 38px;
    text-align: center;
    margin-top: -30px;

}

.loginText {
    font-size: 17px;
    text-align: center;
    margin-top: -45px;
    opacity: 0.6;
}

.overTitles {
    color: white;
    font-size: 18px;
    margin-bottom: -2px;
    margin-top: 25px;
    text-align: left;
}

#signinMail input {
    width: 100%;
    height: 55px;

    background-color: #2B2A2A;
    border: 2px solid #828282;

    color: white;
    font-size: 18px;

    padding-left: 20px;
    box-sizing: border-box;
    outline: none;
}

#signinPassword {
    position: relative;
}


#signinPassword input{
    width: 100%;
    height: 55px;

    background-color: #2B2A2A;
    border: 2px solid #828282;

    color: white;
    font-size: 18px;

    padding-left: 20px;
    box-sizing: border-box;
    outline: none;
}

.rememberForgotBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.rememberMe {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.rememberMe input {
    width: 18px;
    height: 18px;
    accent-color: #00752D;
}

#forgotPassword {
    color: #00752D;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
}

#signinButton button {
    width: 100%;
    height: 55px;

    background-color: #00752D;
    border: 2px solid #767676;
    color: white;

    font-size: 28px;
    cursor: pointer;
    margin-top: 30px;
}

.createUser {
    margin-top: 45px;
    text-align: center;
    border-top: 2px solid #8d8d8d;
    padding-top: 25px;
}

.noAccount {
    font-size: 22px;
    margin-bottom: 25px;
}

.createUser p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 21px;
}

.createUser a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 58px;

    background-color: #00752D;
    border: 2px solid #767676;
    color: white;
    text-decoration: none;
    font-size: 23px;
}

#signinMail {
    position: relative;
}

#signinMail input,
#signinPassword input {
    padding-left: 70px;
}

#signinMail i,
#signinPassword i {
    position: absolute;
    left: 22px;
    top: 50%;

    transform: translateY(-50%);
    font-size: 24px;
}