*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
/*body{*/
/*    overflow: hidden;*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*}*/

p {

    font-family: "Roboto Flex";
}

#logo{
    width: 5rem;
    height: 5rem;
    margin: 2rem 0 0 2rem;
}

#login-img{
    /*width: 50%;*/
    background-image: url(/assets/images/login-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
}

#login-img div{
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

#login-input-container{
    /*width: 50%;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#credentials-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

#login-input-div{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

#password-input-div{
    border: 1px solid black;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    border: 1px solid #B4B4B4;
    background: #FFF;
}

#password-input-div input{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-family: "Roboto Flex";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    border: none;
}

#password-input-div input:focus{
    outline: none;
}

#password-input-div button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.login-text{
    color: #000;
    font-family: "Roboto Flex";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
}

.login-subtext{
    color: #000;
    font-family: "Roboto Flex";
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
}

.credentials-label{
    color: #000;
    font-family: "Roboto Flex";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

#credentials-terms{
    color: #000;
    font-family: "Roboto Flex";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

#checkbox-container{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    accent-color: #F9AA1B;
}

#checkbox-container label {
    color: #000;
    font-family: "Roboto Flex";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

#login-btn{
    border-radius: 50px;
    border: none;
    background: #F9AA1B;
    color: #363636;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    padding: 1rem 0;
}

#hyperlinks-container{
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#hyperlinks-container a{
    color: #000;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
}

.invalid-feedback {
    display: block;
    color: #E53E3E;
    font-size: 14px;
}

@media (max-width: 767px) {
    .logo-container {
        display: none;
    }
    #login-img{
        display: none;
    }
    #login-input-container{
        width: 100%;
    }
}

@media (min-width: 767px) {
    #login-input-div {
        width: 80%;
    }
}

@media (min-width: 950px) {
    #login-input-div {
        width: 70%;
    }
}

@media (max-width: 766px) {
    #login-input-div {
        width: 70%;
    }
}

.main-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #6b7280;
    font-size: 14px;
    position: relative; /* Stays within normal document flow */
    width: 100%; /* Full width */
}

.footer-text {
    font-family: "Roboto Flex";
    font-size: 14px;
    margin-top: 4px;
    margin-right: 6px;
}

.footer-logo {
    height: 30px;
}

.footer-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 24px;
}
