body {
    background-color: #0f0f11;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    background-color: #242529;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 900px;
    height: 500px;
}

.login-form {
    padding: 70px 0px 70px 60px;
}

.login-form h2 {
    color: white;
    font-size: 30px;
}

.login-form p {
    color: #e4e4e577;
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 200;
}

.login-form h6 {
    color: #e4e4e5;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}

.login-container input {
    background-color: #0d0f14;
    border: none;
    font-size: 12px;
    border-radius: 15px;
}

.login-container input::placeholder {
    color: rgb(77, 77, 77);
}

.login-container input:focus {
    outline: none;
    border: none;
    background-color: #0d0f14;
}

.login-form button {
    background-color: #535353;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px;
    border: none;
}

.login-form button:hover {
    background-color: #797979;
    color: white;
    border: none;
}

.form-control {
    margin-bottom: 15px;
}

.form-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: unset;
    height: 100%;
    align-items: center;
}

.form-image img {
    width: 65%;
    height: auto;
}
