* {
    padding: 0;
    margin: 0;
    /* box-sizing: border-box; */
}

a {
    text-decoration: none;
    color: #658ec6;
    font-weight: 500;
}

button {
    font-family: 'Poppins', sans-serif;
    background: none;
    cursor: pointer;
    padding: 0;
}

h1 {
    color: #426696;
    font-weight: 600;
    font-size: 2rem;
    opacity: 0.8;
}

h2,
p {
    color: #658ec6;
    font-weight: 500;
}

h3 {
    color: #426696;
    font-weight: 600;
    opacity: 0.8;
}

input,
select {
    width: 85%;
    border: 2px solid #426696;
    padding: 12px 20px;
    margin: 8px 0;
    border-radius: 4px;
}

.wrapper {
    background: linear-gradient(to right top, rgb(25, 178, 255), rgb(12, 82, 179));
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass {
    background: white;
    min-height: 90vh;
    width: 80%;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    border-radius: 2rem;
    display: flex;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.2);

}

.dashboard {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    border-radius: 2rem;
    box-shadow: 0px 6px 20px rgba(122, 122, 122, 0.2);

}

.logo-container {

    padding: 4rem;
}

.content {
    margin: 3rem;
    display: flex;
    flex-direction: column;
    min-width: 45%;
}

.title {
    margin-bottom: 1.5rem;
    margin-left: 3rem;
}

.card {

    display: flex;
    flex-direction: column;
    background: linear-gradient(to left top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    border-radius: 1rem;
    margin: 2rem 0rem;
    padding: 2rem;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.2);
    justify-content: space-between;
}

.sub-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to left top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    border-radius: 1rem;
    margin: 0.5rem 0rem;
    padding: 1rem;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.2);
    justify-content: space-between;
}

.small {
    font-size: 0.8rem;
}

.red {
    color: red;
}

.buttons {
    display: flex;
    height: 16px;
}

.buttons a {
    padding: 0.5rem 1rem 0.5rem 0rem;
    font-size: 0.8rem;

}

.save {
    color: #658ec6;
    border: 2px solid #658ec6;
    width: 150px;
    height: 50px;
    font-size: 16px;
    margin: 1rem 1rem;
}

.delete {
    height: 16px;
    color: red;
    border: none;
    padding: 0.5rem 1rem 0.5rem 0rem;
    font-size: 0.8rem;
    display: inline-block;
}

.link {
    padding: 0.5rem 4rem;
    margin: 0.5rem 0rem;
    display: flex;
    align-items: center;
}

.link a {
    padding: 0rem 1rem;
}


#menu-toggle,
#menu-label {
    display: none;
}

@media screen and (max-width: 950px) {
    .glass {
        width: 95%;
        border-radius: 1rem;
        flex-direction: column;
    }

    .dashboard {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 6px 0px 20px rgba(122, 122, 122, 0.2);
    }

    .logo-container {
        padding: 2rem;
    }

    .title {
        margin-bottom: 0.5rem;
    }

    .content {
        margin: 0.5rem;
    }

    .card {
        padding: 1rem;
        min-width: 20vh;
    }

    #links {
        overflow: hidden;
        max-height: 0;
        -webkit-transition: all 0.3s ease;
    }

    #menu-label {
        color: #658ec6;
        display: inline-block;
        margin-bottom: 1rem;
    }

    #menu-toggle {
        background: red;
    }

    #menu-toggle:checked+#links {
        max-height: 1000px;
    }

}
