@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(lotus99back.jpg);
    background-size: 270px 270px;
    background-position: 0 0, 25px 25px;
    background-repeat: repeat;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    display: block;
    margin: 0 auto;
}

.wrapper {
    width: 100%;
    max-width: 300px;
    padding: 20px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fac {
    text-align: center;
    margin-bottom: 20px;
}

.fac p {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.input-box {
    width: 100%;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffd700;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #fff;
    padding: 5px;
    outline: none;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit {
    width: 100%;
    height: 40px;
    background-color: #929292;
    border: none;
    border-radius: 6px;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.submit:hover {
    background-color: #ffd700;
}

.login-demo {
    text-align: center;
    font-size: 13px;
}

.login-demo p {
    color: #fff;
}

.login-demo a {
    color: #187eeb;
    text-decoration: none;
}

.login-demo a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .wrapper {
        max-width: 90%;
    }

    .fac p {
        font-size: 14px;
    }
}