:root {
    --bg-main: #2f4635;
    --bg-card: #3d5a45;
    --input-bg: #4d6b54;
    --btn-bg: #dfe4de;
    --text-muted: #b5b5b5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg-main);
    font-family: Arial, sans-serif;
    color: #fff;
}

.container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.card {
    width: 100%;
    max-width: 920px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: stretch;
}

/* ===== FORM ===== */
.form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form h2 {
    margin: 0 0 30px;
    font-size: 28px;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group input {
    width: 100%;
    height: 52px;
    border-radius: 26px;
    border: none;
    background: var(--input-bg);
    padding: 0 48px 0 20px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.input-group svg {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #b5b5b5;
    display: block;
}

.input-group svg.eye {
    cursor: pointer;
}

button {
    margin-top: 18px;
    height: 56px;
    border-radius: 28px;
    border: none;
    background: var(--btn-bg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
}

/* ===== КАРТИНКА СПРАВА (ОДНА) ===== */
.confirmation-image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.confirmation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 720px) {
    .card {
        flex-direction: column;
        padding: 28px;
    }
    .confirmation-image {
        display: none;
    }
}