body {
    background-image: url("../img/01\ login/home-img-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 800px) {
    .container {
      display: none !important;
    }

    .mobileMessage {
        display: block !important;
    }
}

.mobileMessage {
    display: none;
    font-size: xx-large;
    margin: auto;
    text-align: center;
    color: white;
}

.veg_logo {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 45%;
    transform: translateY(-50%);
}

.cegos_logo {
    position: fixed;
    top: 0;
    left: 0;
    margin-left: 2%;
    margin-top: 2%;
}

.input_div {
    align-self: center;
}

.welcome_text {
    font-size: xxx-large;
    color: #e3a335;
    text-align: justify;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
}

.left {
    text-align: center;
    width: 35%;
    height: 100%;
    margin-left: 10%;
}

.right {
    text-align: center;
    width: 55%;
    height: 100%;
    display: flex;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    border-bottom: 1px solid white;
    width: 100%;
    font-size: x-large;
    margin-bottom: 25px;
    opacity: 0.5;
    transition: 0.5s;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover {
    opacity: 1;
}

input::placeholder {
    color: white;
    font-weight: lighter;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: x-large;
    font-weight: initial;
    color: white;
    background: linear-gradient(90deg, var(--c1, rgba(51, 48, 73, 1)), var(--c2, rgba(90, 82, 134, 1)) 51%, var(--c1, rgba(51, 48, 73, 1))) var(--x, 0)/ 200%;
    cursor: pointer;
    transition: all .5s ease;
    margin-top: 15px;
}

.enter_btn {
    --c1: rgba(51, 48, 73, 1);
    --c2: rgba(90, 82, 134, 1);
}

.back_btn {
    --c1: rgb(73, 48, 48);
    --c2: rgb(134, 82, 82);
}

.btn:hover {
    --x: 100%;
}

.host_redirect_text {
    color: white;
}

.host_redirect_text>a {
    color: white;
    font-weight: bold;
}

.customAlert {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    font-weight: bold;
}
#demo-acount{
    background-color: #ffdd42;
    color: #000;
}

#demo-acount a{
    color: #000;
}