@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura Font Family 2/FuturaStd-Book.otf') format('otf'),
    url('../fonts/Futura Font Family 2/FuturaStd-Book.otf') format('otf');
    font-weight: 400;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura Font Family 2/Futura.ttf') format('ttf'),
    url('../fonts/Futura Font Family 2/Futura.ttf') format('ttf');
    font-weight: 500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: 'Futura', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
    min-height: 100vh;
    background: #000;
}

.background-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('background-image.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: auto;
}

.form-section {
    min-height: 100vh;
    background: white;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-in-title {
    font-size: 28px;
    font-weight: 100;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.forgot-password-title{
    font-size: 28px;
    font-weight: 100;
    color: #1a1a1a;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #C8347E !important;
    background: #fff!important;
}

#kt_toolbar{
    display: none !important;
}

.header-fixed.toolbar-fixed .wrapper {
     padding-top: 0 !important;
}

.forgot-password {
    font-size: 16px;
    background: linear-gradient(95deg, #D35B72 0%, #F26B3A 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin-top: -16px;
    margin-bottom: 24px;
    display: block;
    font-weight: 500;
}

.forgot-h6{
    font-weight: 500;
}

.sign-in-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #C8347E, #F26B3A);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sign-in-button:hover {
    opacity: 0.9;
}

.remember-me {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.remember-me-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.form-label {
    margin-bottom: .5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #111;
}

.baze-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-visualization {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/login_background_banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8); /* Darkens the background slightly */
    opacity: 0.3;
}

.baze-logo {
    position: absolute;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .baze-wrapper {
        height: 150px;
    }
}
