div {
    display: block;
    unicode-bidi: isolate;
}


#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-container {
    width: 100%;
    height: 100vh;
    background: url('/img/background.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15vh;
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 94, 0.7);
    z-index: 1;
}

.version, .logo, .login-form {
    position: relative;
    z-index: 2;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.login-form {
    width: 80%;
    max-width: 300px;
}

.input-field {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin-bottom: 15px;
    padding: 0 20px;
    color: white;
    font-size: 16px;
}

.input-field:focus {
    outline: none;
    border-color: #8957e5;
}

.login-btn {
    width: 100%;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 25px;
    color: #8957e5;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.login-btn:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

.try-btn {
    width: 100%;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 25px;
    color: #8957e5;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.version {
    position: absolute;
    top: 10px;
    left: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}