* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #000;
}

.wrapper {
    background: url(../images/bg1.png) left top no-repeat;
    background-size: cover;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 15px;
}

.header {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    max-height: 40px;
}

.bg-flag {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: 60px;
}

.blue {
    color: #2b78e4;
}

.salary-box {
    background-color: #b9e3d3;
    color: #075e54;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.salary-box strong {
    font-weight: 700;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="tel"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #999;
    font-size: 16px;
    background: transparent;
}

.phone-field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #999;
    padding-bottom: 8px;
}

.phone-field .flag {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

.phone-field img {
    width: 24px;
    height: auto;
}

.phone-field input {
    border: none;
    flex: 1;
    font-size: 16px;
    outline: none;
}

.main {
    max-width: 300px;
    margin: 0 auto;
}

.submit-btn {
    background-color: #ffd700;
    color: #000;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #ffcc00;
}

.trust {
    text-align: center;
}

.trust h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.trust p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.partners {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.partners img {
    max-height: 25px;
    max-width: 60px;
    object-fit: contain;
    flex: 1 1 30%;
}
