body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container {
    text-align: center;
}


.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.logo-container img {
    width: 200px;
    margin-bottom: 20px;
}

.login-form {
    text-align: center;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;

}


.input-container {
    width: 100%;
    margin-bottom: 20px;

}


input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #e50914;
    font-size: 18px;

}


button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #e50914;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition:  background-color 0.3s ease;

}


button[type="submit"]:hover {
    background-color: #d30812;
}


.renember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;

}

.renember-forgot label {
    display: flex;
    align-items: center;
}

.renember-forgot input[type="checkbox"] {
    margin-right: 5px;

}

.signup-now {
    font-size: 18px;

}

.signup-now a {
    color: #e50914;
    text-decoration: none;
}



.sucess-message {
    display: none;
    color: #2ecc71;
    font-size: 18px;
    margin-top: 20px;
}