* {
    font-family: inherit;
    line-height: 1.5;
    letter-spacing: normal;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    width: 400px;
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.LoginFormBox {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
}

.LoginLabel {
    font-size: 14px;
    font-weight: 500;
    color: #181717;
    margin-bottom: 8px;
}

.LoginInputBox {
    display: flex;
    border-bottom: 1px solid #323232;
    padding-bottom: 8px;
    margin-bottom: 4px;
    color: #8d8d8d;
}

.LgnInput {
    flex: 1 1 0%;
    padding: 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    background-color: transparent;
    color: #1b1b1b;
}
input::placeholder {
    color: #b3b3b3;
}


.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.login-button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    height: 3rem;
    font-weight: 700;
    transition: all 0.08s ease-in 0s;
}

.login-button:hover {
    background-color: #0056b3;
}

