@font-face {
    font-family: "NotoSans";
    src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'NotoSans', sans-serif;
}

main {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-card);
}

.access-card {
    width: 35%;
    background-color: var(--card);
    padding: 30px;
    border-radius: 30px;
}

.access-card .access-header {
    text-align: center;
    width: 100%;
}

.access-card .access-header .logo {
    height: 100px;
    margin-bottom: 20px;
}

.access-card .access-header .title {
    font-size: 16pt;
    font-weight: 600;
    color: var(--text-title);
    margin-top: -15px;
}

.access-card .access-content {
    width: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 760px) {
    .access-card {
        width: 90%;
        background-color: var(--card);
        padding: 30px;
        border-radius: 30px;
    }
}