.login-main {
    direction: rtl;
    width: 100%;
    position: relative;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    border-radius: 0.3rem;
    background: #111;
    padding: 15px;
    height: 480px;
    border: 2px solid orange;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

button {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 0 10px 0;
    background: #ccc;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
}

button {
    background: transparent;
    border: 1px solid orange;
    color: orange;
}

button:hover {
    color: #fff;
    background: orange;
}

.login-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 100%;
}

.login-info {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

.login-input-text {
    width: 100%;
    text-align: center;
}

.login-input-text input {
    background: none;
    border: none;
    border-bottom: 2px solid rgb(122, 122, 122);
    text-align: center;
    width: 100%;
}

input:focus {
    outline: none;
    border-bottom: 2px solid orange;
}

input:focus::placeholder {
    color: #fff;
}

p {
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

a {
    text-decoration: none;
    color: rgb(85, 255, 7);
}

a:hover {
    text-decoration: none;
    color: orange;
}
