body, html {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    color: #000;
}

.outer-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #000;
}

.login-container {
    display: flex;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    width: 90%;
    min-height: 80vh;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.login-left {
    width: 60%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.login-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
}

.logo-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
}

.logo-box img {
    max-width: 100%;
    height: auto;
}

.login-header {
    text-align: center;
    margin-bottom: 3rem;
}

.login-header h1 {
    font-size: 3rem;
    margin: 0;
    color: #000;
}

.login-header p {
    font-size: 1.1rem;
    color: #444;
    margin-top: 0.75rem;
}

.login-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: #888;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 55%;
    right: 1.2rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1;
    padding: 0;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #222;
}

.extra-options {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.extra-options a {
    color: #666;
    text-decoration: none;
}

.extra-options a:hover {
    color: #000;
}

.right-align {
    text-align: right;
}

.form-control,
.submit-btn {
    box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}