*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #0f0f0f;
}

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

    .container {
        max-width: 1220px;
        margin: 0 auto;
        width: 100%;
        padding: 0 10px;
    }

    .login-wrapper {
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 0;
    }

    .login-container {
        background: #FFFFFF;
        box-shadow: 0 4px 20px rgb(0 0 0 / 12%);
        border-radius: 10px;
        padding: 14px 26px;
        max-width: 430px;
        width: 100%;
    }

    .captcha {
        background: transparent;
        border-radius: 10px;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #717171;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 110px;
        overflow: hidden;
    }

    .captcha img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

    input::placeholder {
        color: #fff;
        opacity: 0;
    }

    input::-ms-input-placeholder {
        color: #fff;
    }

    input::-ms-input-placeholder {
        color: #fff;
    }

    input:not(:placeholder-shown) {
        padding: 22px 16px 6px;
    }

    .input-group {
        position: relative;
    }

    .login-input {
        border: 1px solid #EBEBEB;
        border-radius: 10px;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0F0F0F;
        padding: 0 16px;
        height: 58px;
        width: 100%;
        display: flex;
        box-sizing: border-box;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .floating-label {
        position: absolute;
        pointer-events: none;
        left: 16px;
        top: 17px;
        transition: 0.2s ease all;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #B7B7B7;
    }

    input:focus {
        border: 1px solid #262626;
        padding-top: 22px;
        outline: none;
    }

    input:not(:placeholder-shown) ~ .floating-label,
    input:focus ~ .floating-label {
        top: 5px;
        bottom: 10px;
        left: 16px;
        opacity: 1;
        font-size: 14px;
    }

    .button-submit {
        background: #0E0E0E;
        border-radius: 10px;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #FFFFFF;
        padding: 17px 0;
        border: none;
        width: 100%;
        cursor: pointer;
        transition: 0.3s all;
    }

    .button-submit:hover {
        opacity: 0.92;
    }

.fixed-screen {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
}

@supports (height: 100svh) {
    .login-wrapper {
        min-height: 100svh;
    }

    .fixed-screen {
        min-height: 100svh;
    }
}

.content-section {
    position: relative;
    padding: 48px 0 80px;
    background: #ffffff;
}

.content-section h1,
.content-section h2,
.content-section h3 {
    margin: 0 0 16px;
    color: #0f0f0f;
}

.content-section h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 16px;
}

.content-section h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 28px;
}

.content-section h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.content-section p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 26px;
    color: #4d4d4d;
}

.content-section .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.content-section .gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    border: 2px solid #333333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.content-section .gallery img:hover {
    transform: scale(1.04);
    border-color: #ff6600;
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.22);
}

.size-table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: #ffffff;
}

.size-table td {
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    font-size: 15px;
    color: #1a1a1a;
    text-align: left;
}

.size-table tr:first-child td {
    font-weight: 600;
    background: #f7f7f7;
}

.site-footer {
    background: #0e0e0e;
    color: #ffffff;
    padding: 28px 0 36px;
}

.site-footer p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-lead {
    font-weight: 500;
}

.footer-title {
    font-weight: 600;
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .login-container {
        max-width: 420px;
        padding: 14px 22px;
    }

    .content-section {
        padding: 40px 0 64px;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 24px 0;
    }

    .login-container {
        max-width: 360px;
        padding: 12px 20px;
    }

    .captcha {
        height: 100px;
    }

    .login-input {
        height: 54px;
    }

    .button-submit {
        padding: 15px 0;
    }

    .content-section h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .content-section h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .content-section h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .content-section .gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin: 40px 0;
    }

    .content-section .gallery img {
        height: 220px;
    }

    .size-table {
        min-width: 420px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .login-wrapper {
        padding: 20px 0;
    }

    .login-container {
        max-width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .captcha {
        height: 92px;
    }

    .login-input {
        height: 52px;
        font-size: 15px;
    }

    .floating-label {
        font-size: 15px;
    }

    .button-submit {
        font-size: 15px;
        padding: 14px 0;
        border-radius: 12px;
    }

    .content-section {
        padding: 32px 0 56px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 24px;
    }

    .content-section .gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px 0;
    }

    .content-section .gallery img {
        height: 210px;
    }

    .size-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .site-footer p {
        font-size: 14px;
        line-height: 22px;
    }
}
