.home-page-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--bg-color);
    overflow: hidden;
}

.home-page-panel {
    width: 25%;
    min-width: 340px;
    height: 50%;
    min-height: 420px;

    background-color: var(--fg-color);
    border-radius: 20px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: var(--panel-shadow);
}

.logo-container {
    width: 86px;
    height: 86px;

    background: linear-gradient(to bottom right, rgb(87, 87, 255), rgb(255, 84, 255));

    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-bottom: 20px;
}

.title-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 25px;
    font-weight: bold;
}

.description-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 16px;
    font-weight: medium;
}

.create-account-page-link {
    height: 10%;
    width: 80%;

    color: white;
    background: linear-gradient(to bottom right, rgb(87, 87, 255), rgb(255, 84, 255));

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;

    margin: 25px;
}

.create-account-page-link:hover {
    cursor: pointer;
}

.sign-in-page-link {
    height: 10%;
    width: 80%;

    color: blue;
    background-color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    border-style: solid;
    border-color: blue;
    border-width: 2px;
    font-size: 16px;
    font-weight: bold;
}

.sign-in-page-link:hover {
    cursor: pointer;
}