body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.auth-page {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    padding: 40px;
    color: #F44320;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.auth-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-row {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.auth-form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.auth-form input,
.auth-form textarea,
.auth-form select {
    border: 1px solid #000000 !important;
    border-radius: 20px !important;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
    background: white;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    border: 1px solid #000000 !important;
    border-radius: 20px !important;
}

.auth-form p {
    color: #000000 !important;
    margin-bottom: 8px;
}

.auth-form label {
    color: #000000 !important;
}

.auth-form,
.auth-form * {
    color: #000000 !important;
}

.switch-link a {
    color: #000000 !important;
    font-weight: 600;
    text-decoration: none;
}

.switch-link {
    color: #000000 !important;
    text-align: center;
    margin-top: 20px;
}

.top-bar {
    margin-bottom: 40px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.auth-title {
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    color: #F44320;
}

.close-btn {
    font-size: 32px;
    text-decoration: none;
    color: #F44320;
}

.auth-image-wrapper {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-image-side {
    width: 100%;
    height: 100%;
    background-image: url(/static/images/header-background.svg);
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    position: relative;
    display: flex;
    min-height: 500px;
    padding: 20px;
    box-shadow: -25px 0 60px rgba(244, 67, 32, 0.6);
}

.decor-top,
.decor-bottom {
    position: absolute;
    z-index: 5;
}

.decor-top {
    top: 20px;
    right: 0;
    width: 120px;
}

.decor-bottom {
    bottom: 20px;
    left: 0;
    width: 120px;
}

.decor-top svg,
.decor-bottom svg {
    width: 100%;
    height: auto;
    fill: none;
}

.auth-form {
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,0.12);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.btn-submit {
    width: 100%;
    background: #F44320;
    color: #FFFFFF!important;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
    cursor: pointer;
}

.logo-wrap {
    padding: 20px;
}

.caucasia-logo {
    width: 150px;
}

@media (max-width: 768px) {
    .auth-page {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .auth-row {
        flex-direction: column;
    }

    .auth-image-side {
        order: -1;
        min-height: 200px;
        width: 100%;
        margin-bottom: 20px;
    }

    .auth-form-side {
        width: 100%;
    }

    .auth-title {
        font-size: 36px;
    }
}

* {
    font-family: 'Unbounded', sans-serif !important;
}