* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: linear-gradient(to bottom, #2c3fc1, #00116c);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.wrapper {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    background: #002894;
}

.header {
    background: #d9d9d9;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
}

.header-element {
    display: flex;
    align-items: center;
    gap: 5px;
}

.emblem {
    min-height: 50px;
}

.header img {
    height: 20px;
}

.header .domain {
    font-size: 12px;
    color: #555;
}

.main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.gazprom-logo {
    max-width: 180px;
    margin: 0 auto;
}

h2 {
    font-size: 18px;
    margin: 0;
    line-height: 1.3;
}

.payout h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.payout p {
    font-size: 14px;
    margin: 0;
}

.next-payment {
    background: #f1f1f1;
    color: black;
    padding: 14px;
    font-weight: 400;
    font-size: 20px;
    margin: 0 auto;
    margin-left: -20px;
    margin-right: -20px;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 20px;
}

.form-section h3 {
    margin-top: 0;
    font-weight: 900;
    font-size: 25px;
    margin-bottom: 30px;
}

.form-section input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: #8484cd;
}

.phone-wrapper {
    position: relative;
}

.phone-wrapper img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
}

.phone-wrapper input {
    padding-left: 40px;
}

.protect {
    font-size: 12px;
    margin-top: 10px;
    display: flex;
    align-items: end;
    gap: 5px;
    color: white;
}

.lock {
    margin-right: 6px;
}

.main h2 {
    font-weight: 700;
    font-size: 25px;
}

.payout h3 {
    font-weight: 700;
    font-size: 25px;
}

.payout p {
    font-weight: 700;
    font-size: 19px;
}

::placeholder {
    color: #c0c0e5;
}

.submit-btn {
    width: 100%;
    background: #002894;
    color: white;
    padding: 10px;
    font-weight: 400;
    font-size: 20px;
    border: none;
    border-radius: 20px;
    margin-top: 15px;
}