58 lines
817 B
CSS
58 lines
817 B
CSS
.page {
|
|
/* position: relative; */
|
|
position: static;
|
|
/* height: calc(100vh - 50px);
|
|
max-height: -webkit-fill-available; */
|
|
display: flex;
|
|
justify-items: center;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.hide {
|
|
height: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.payment-loader {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.cross {
|
|
position: absolute;
|
|
top: -36px;
|
|
right: 28px;
|
|
width: 22px;
|
|
height: 22px;
|
|
cursor: pointer;
|
|
z-index: 9;
|
|
}
|
|
|
|
.title {
|
|
font-size: 27px;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.email {
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
}
|
|
|
|
.button {
|
|
min-height: 0;
|
|
height: 50px;
|
|
text-transform: uppercase;
|
|
background-color: #4caf50;
|
|
border-radius: 25px;
|
|
font-size: 16px;
|
|
gap: 8px;
|
|
}
|
|
|
|
.button > img {
|
|
height: 18px;
|
|
margin-top: -5px;
|
|
} |