main {
    padding: 40px 10%;
    color: #000000;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.flex {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
}

.space {
    height: 50px;
}

.big-space {
    height: 100px;
}

.btn {
    background-color: #d80027;
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    border: none;
    transition: all 0.3s;
    font-size: medium;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.right {
    display: flex;
    justify-content: end;
    width: 100%;
}

.btn:hover {
    scale: 1.05;
    background-color: #222222;
}

.form-group {
    flex: 1;
    color: #000000;
    display: flex;
    flex-direction: column;

    .phone-number {
        display: flex;
        gap: 10px;

        .flag {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                position: absolute;
            }
        }

        .number {
            width: 100%;
        }
    }

    span {
        color: #d80027;
        margin-right: 5px;
    }

    input {
        height: 55px;
        border-radius: 7px;
        border: 1px solid rgb(85, 85, 85, 0.5);
        padding: 0 20px;
        font-size: medium;
        font-family: inherit;
        margin: 10px 0;
    }

    select {
        font-family: inherit;
        height: 55px;
        border-radius: 7px;
        border: 1px solid rgb(85, 85, 85, 0.5);
        padding: 0 20px;
        font-size: medium;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .flex {
        flex-direction: column;
    }
}