@import "main.css";

.container {
    margin-top: 121px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.form {
    margin-left: 166px;
    background: rgb(112,0,204);
    background: linear-gradient(25deg, rgba(112,0,204,1) 0%, rgba(153,26,255,1) 100%);
    background: url(../images/dform.png);
    background-repeat: no-repeat;
    width: 398px;
    height: 667px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

input {
    width: calc(335px - 91px - 28px);
}

form input, form select {
    padding-left: 91px;
    padding-right: 28px;
    height: 69px;
    border-radius: 20px;
    background: #fff;
    font-family: 'Calibri', sans-serif;
    font-size: 21px;
}

form button {
    width: 268px;
    height: 55px;
    border-radius: 28px;
}

p[class="gradient-text"] {
    font-family: "Panton", sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.gradient-text {
    background: rgb(102,0,184);
    background: linear-gradient(207deg, rgba(102,0,184,1) 0%, rgba(43,7,71,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

select {
    width: 335px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select:focus {
    outline: none;
}

.select:after {
    content: "";
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 32px;
    top: 31px;
    z-index: 1;
    width: 16px;
    height: 8px;
}

.nickname, .select, .amount, .email {
    position: relative;
}

form img {
    position: absolute;
}

.nickname img {
    left: 28px;
    top: 15px;
}

.select img {
    left: 29px;
    top: 13px;
}

.amount img {
    left: 27px;
    top: 14px;
}

.email img{
    left: 26px;
    top: 18px;
}

form {
    padding: 65px 0;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

form h3 {
    font-family: "Panton", sans-serif;
    font-weight: 800;
    color: #fff;
}

.block {
    margin-left: 150px;
}

.row {
    margin-top: 31px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.row:first-child {
    margin: 0;
}

.bundle {
    position: relative;
    margin-left: 93px;
    width: calc(380px - 26px);
    height: 205px;
    border-radius: 30px;
    background: rgb(112,0,204);
    background: linear-gradient(25deg, rgba(112,0,204,1) 0%, rgba(153,26,255,1) 100%);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}

.bundle img {
    align-self: center;
}

.bundle p {
    margin-left: 26px;
    font-family: "Arial", sans-serif;
    color: #fff;
    font-size: 17px;
}

p[class="title"] {
    margin-top: 20px;
    font-size: 20px;
}

.bundle:first-child {
    margin: 0;
}

h1 {
    margin-top: 52px;
    height: auto;
    font-family: "Code Pro";
    font-weight: bold;
    font-size: 73px;
}

.description {
    font-family: "Arial", sans-serif;
    font-size: 24px;
}

.price {
    position: absolute;
    top: 17px;
    right: -39px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(82, 204, 0, 0.65);
    -moz-box-shadow:    0px 0px 10px 0px rgba(82, 204, 0, 0.65);
    box-shadow:         0px 0px 10px 0px rgba(82, 204, 0, 0.65);
    width: 113px;
    min-height: 49px;
    background: rgb(89,223,0);
    background: linear-gradient(180deg, rgba(89,223,0,1) 0%, rgba(74,185,0,1) 100%);
    border-radius: 15px;
    color: #fff;
    font-size: 27px;
    font-family: "Panton", sans-serif;
    font-weight: 800;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

footer {
    margin-top: 172px;
}