* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    background: #f8fafc;
    max-height: 100vh;
}
.links {
    display: flex;
    justify-content: center;
}
.link {
    padding: 0 10px;
    margin: 5px 0;

    list-style: none;
    position: relative;
}
.link:after {
    content: ' ';
    height: 60%;
    width: 2px;

    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-45%);
    background-color: #5e6a7d;
    opacity: 0.8;
}
.link:last-of-type:after {
    content: none;
}
.link a {
    text-decoration: none;
    color: #61a6fa;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    opacity: 0.8;
}

.copyright {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #5e6a7d;
    opacity: 0.8;
}
.linegrow1.bright {
    max-height: 1px;
    border-style: solid;
    border-width: 1px;
    border-color: #1d272d;
    background-color: #1d272d;
}

.content__wrapper {
    display: flex;
    justify-content: center;
    background: white;
    padding: 60px 60px;
    width: 600px;

    box-shadow:
        0px 4px 80px rgba(0, 0, 0, 0.07),
        0px 0.893452px 17.869px rgba(0, 0, 0, 0.0417275),
        0px 0.266004px 5.32008px rgba(0, 0, 0, 0.0282725);
    border-radius: 8px;
}

.linegrow1 {
    position: relative;
    width: 100px;
    border-bottom: 2px solid #fff;
    margin: auto;
}
main {
    width: 100%;
    display: flex;
    justify-content: center;
}

header {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.logo-img {
    width: auto;
    max-height: 100px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

@media screen and (max-height: 700px) {
    footer {
        display: none;
    }
}

.copyright_wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.primary-btn {
    outline: none;
    border: none;
    margin-top: 10px;

    background: #fafaf9;
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #404b5c;
    padding: 10px 45px;
    box-sizing: border-box;
}

.primary-btn:not(:disabled):hover {
    opacity: 0.75;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    outline: 1px solid #1d272d;
}

.primary-btn[type='submit']:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.primary-btn:focus {
    outline: 1px solid #1d272d;
}

.connections-wrapper {
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}

.polygon-wrapper {
    position: relative;
}

.logo {
    width: 40px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.secondary-link {
    padding: 10px 16px;
    color: #ffffff;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    background: #2463eb;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.secondary-link:hover {
    opacity: 0.75;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.message {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    max-width: 75%;
    align-self: center;
    text-align: center;
    letter-spacing: -0.1px;
    color: #566466;
}

.message a:after {
    content: none;
}

.full-width {
    max-width: 100%;
}

.dividing-line {
    border-top: 1px solid #d8d8d8;
    width: 100%;
}

.title {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.03px;
    color: #404b5c;
}

.content-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 400px;
    gap: 24px;
}

.warn-content-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 425px;
    gap: 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;

    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
