body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/skyview/favicon/backgroundImage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(50%);
    z-index: -1;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1386px;
    height: 100vh;
    margin: 0 auto;
}

.left-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.logo-wrapper {
    width: 449.42px;
    height: 173.01px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 24px;
    margin: 0 auto;
    width: 471px;
    height: 408px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #D4D4D8;
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 16px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.login-form h1 {
    color: white;
    font-size: 24px;
    margin: 0;
    align-self: flex-start;
}

.login-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.form-group .toggle-password img {
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.or-label {
    text-align: center;
    color: white;
    font-size: 14px;
    margin-top: 12px;
}

.forgot-password {
    text-align: center;
    color: white;
    font-size: 14px;
}

.forgot-password a {
    color: white;
    text-decoration: none;
}

@media (max-width: 500px) {
    .login-form {
        width: 90%;
        height: auto;
        min-height: 408px;
    }
}