@font-face {
    font-family: 'OpenSans-Regular';
    src: url(../fonts/OpenSans-Regular.ttf);
}
@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url(../fonts/OpenSans-SemiBold.ttf);
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}
.wrapper {
    display: flex;
    min-width: 100vw;
    min-height: 100vh;
    background: linear-gradient(180deg, #2A4D81 0%, #7BE4FF 80%);
}
.wrapper .base-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.container.bondnet{
    margin-top: 20px;
}

.container {
    margin: auto;
    margin-top: 0px;
    width: fit-content;
    height: fit-content;
    font-family: 'OpenSans-Regular';
    font-size: 16px;
}

h1, h2, p {
    text-align: center;
}
h1 {
    font-family: 'OpenSans-SemiBold';
    font-size: 20px;
    margin: 42px 0px 20px 0px;
}
.container .link-logo {
    display: block;
    text-align: center;
}
.container.bondec .link-logo img {
    width: 200px;
    height: 114px;
}
.container.bondnet .link-logo img{
    width: auto;
    height: 114px;
}
h2  {
    font-family: 'OpenSans-SemiBold';
    font-size: 16px;
    margin: 0px;
    margin-top: 20px;
}
p {
    margin: 4px 0px;
}
.email {
    color: inherit;
    text-decoration: none;
}
.email:hover {
    text-decoration: underline;
}
.btn-box {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.btn-box a {
    display: flex;
    background: #1B3169;
    border-radius: 12px;
    width: 149px;
    height: 67px;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-box a:hover {
    background: #061641;
    transition: background 0.3s linear;
}
.btn-box a img {
    margin-right: 12px;
}
.android {
    width: 38px;
    height: auto;
}
.ios {
    width: 30px;
    height: auto;
}
.btn-box a p {
    font-size: 10px;
    text-align: left;
}
.btn-box a p span {
    display: block;
    font-size: 20px;
}