@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.login-display-background {
    background: linear-gradient(135deg, #0f52ba -15.11%, #003467 51.40%);

    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-position: center;

}

.login-display-background .container {
    display: flex;
    padding: 0;
    margin: 0;
}

.login-side-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-side-text img {
    width: 30%;
}

.login-side-text h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    color: #ffffff;
}

.login-form-container {
    width: 50%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    max-width: 400px;
    animation: go-left-login 0.8s ease-in forwards;

}

@keyframes go-left-login {
    0% {
        transform: translateX(100%);

    }

    100% {
        transform: translateX(0);

    }
}

.login-form form {
    background: rgba(255, 255, 255);
    padding: 20px 30px;
    border-radius: 20px;
    margin: 0 10px;
}

.login-group {

    padding: 5px 0;
    margin-top: 10px;
}

.login-group label {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.login-group input {
    width: 100%;
    padding: 10px 30px;
    font-size: 16px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 3px;
    background: none;
    color: rgb(0, 0, 0);
    margin-top: 10px;
    box-sizing: border-box;
}

.login-group input:focus {
    box-shadow: 0 0 5px rgb(255, 255, 255);
    border: 1px solid rgba(81, 203, 238, 1);
    border-radius: 3px;
    background-color: transparent;
    color: rgb(0, 0, 0);
}

.login-group button {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0.8rem;
}

.login-group {
    position: relative;
}

.login-group .txticon {
    position: absolute;
    right: 0;
    top: 0;
    color: #000000;
    margin-top: 45px;
    padding-right: 10px;
    cursor: pointer;
}

#hide1 {
    display: none;
}

.login-group .lockpass {
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    margin-top: 45px;
    padding-left: 10px;
}


.login-header {
    text-align: center;

}

.login-header img {
    width: 200px;

}

.error-msg {
    width: 100%;
    background-color: rgb(255, 113, 113);
    color: #ffffff;
    padding: 1px 15px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 15px;
    border-radius: 3px;

}

.login-success {
    width: 100%;
    background-color: rgb(94, 185, 118);
    color: #ffffff;
    padding: 1px 15px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 15px;
    border-radius: 3px;

}

.invalid-feedback {
    color: red;
    font-size: x-small;
}

@media (max-width: 700px) {
    .login-form form {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .login-form {
        margin-top: 20px;
    }
}

@media (orientation:portrait) {
    .login-display-background .container {
        flex-direction: column;
    }

    .login-side-text {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .login-side-text h1 {
        font-size: 2rem;
        margin-top: 0.5rem;

    }

    .login-side-text img {
        width: 3rem;
        margin-right: 5px;
    }

    .login-form-container {
        width: 100%;
        align-items: flex-start;
        margin: auto;
    }
}
