body {
    background-color: #000;
}

.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.tips-container {
    display: flex;
    flex: 0 0 60%;
}

.logo-container {
    display: flex;
    width: 50%;
    height: 20vw;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-right: 40px;
}

.logo-container img {
    height: 12vw;
    width: 12vw;
}

.tips-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 20vw;
    justify-content: center;

    font-size: 4vw;
    color: #fff;
    font-weight: bold;

}

.tips-title span{
    display: flex;
    justify-content: center;
}

.login-dialog-container {
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
}

.login-dailog {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
}

.login-dailog form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-title {
    width: 100%;
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #000;
}

.form-group {

    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.input-label {
    display: flex;
    flex: 0 0 20%;
    justify-content: end;
    align-items: end;
    text-align: end;
    font-size: 0.8vw;

}

.input-container {
    display: flex;
    flex: 0 0 70%;
}

.form-group input {
    display: flex;
    width: 100%;
    border-radius: 5px;
    height: 30px;
    border: 1px solid #a1a1a1;
    font-size: 1vw;
}

.submit-buttton {
    display: flex;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.submit-buttton button {
    width: 90%;
    height: 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: #000;
    color: #fff;

}