.full{
	width: 100%;
	display: inline-block;
	vertical-align: top;
}

.full textarea{
    height: 200px;
    border-radius: 10px;
    padding-top:15px;
    background: #ececec;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}


.promocode-form{
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 50px;
}

.promocode-form .title{
    margin-bottom: 20px;
    font-size: 30px;
}
.promocode-form span{
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

.promocode-form .green{
    color: seagreen;
}

.promocode-form .reds{
    color: red;
}

.promocode-form button{
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    border: none;
    margin: auto;
    margin-left: 0;
    color: #fff;
    border-radius: 50px;
    background-color: var(--two-color);
    font-family: "Bold";
    display: inline-block;
    transition: 0.3s;
}

.promocode-form input{
    height: 45px;
    border-radius: 10px;
    font-family: "Regular";
    background: #ececec;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 250px;
}

@media (max-width: 550px){
    .promocode-form span{
        text-align: center;
    }
    .promocode-form{
        width: 100%;
        padding: 10px 15px;
    }
    .promocode-form input{
        width: 100%;
        margin-bottom: 10px;
    }
    .promocode-form button{
        display: block;
        text-align: center;
        width: 100%;
    }
}