/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.login-box {
    background-color: #333;
    padding: 60px 68px 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.logo {
    width: 150px;
    align-content: baseline;
    margin-bottom: 30px;
}

/* Form Styling */
.login-form h1 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 16px;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 16px;
    background-color: #333;
    border: 1px solid #8c8c8c;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="email"]::placeholder, input[type="password"]::placeholder {
    color: #8c8c8c;
}

.btn-signin {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 24px 0;
}

.btn-signin:hover {
    background-color: #f6121d;
}
.or{
    font-size: 18px;
    text-align: center;
}
.btn-code{
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #676565;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 24px;
}
.forget-password{
    font-size: 18px;
    text-align: center;
    margin: 15px;
}

/* Help Options */

input[type="checkbox"] {
    margin-right: 5px;
}

.signup-now {
    margin-top: 30px;
}

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

.signup-now a:hover {
    text-decoration: underline;
}

.small-text {
    margin-top: 20px;
    font-size: 12px;
    color: #8c8c8c;
}

.small-text a {
    color: #0071eb;
    text-decoration: none;
}

.small-text a:hover {
    text-decoration: underline;
}


.error {
    color: #e50914;
}
