:root {
    --primary-color: rgb(30, 144, 255);
    --primary-dark: rgb(23, 108, 191);
    --primary-darker: rgb(15, 72, 127);
    --secondary-color: rgb(200, 200, 255);
    --shadow-color: rgba(0, 0, 0, 0.8);
}

* {
    box-sizing: border-box;
}

html, body {
  margin: 0;
  overflow-x: hidden;
}

.container-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
}

.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    height: 70vh;
    width: 40vh;
    margin-top: auto;
    margin-bottom: auto;
    border: 0.5vh solid black;
    border-radius: 5vh;
    box-shadow: var(--shadow-color) 0.5vh 0.5vh 1vh;
}

.title {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 4vh;
    font-weight: bold;
    text-shadow: var(--shadow-color) 0.5vh 0.5vh 3vh;
    margin-top: 5vh;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh;
    margin-top: auto;
    margin-bottom: auto;
}

.form {
    width: 35vh;
    height: 5vh;
    border: 0.25vh solid black;
    border-radius: 1.5vh;
    text-align: center;
    font-size: 2vh;
    box-shadow: var(--shadow-color) 0.25vh 0.25vh 1vh;
}

.confirm {
    background-color: var(--primary-color);
}

.confirm:hover {
    background-color: var(--primary-dark);
}

.confirm:active {
    background-color: var(--primary-darker);
}

.control-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    min-height: 90vh;
    width: calc(100vw - 10vh);
    border: 0.5vh solid black;
    border-radius: 5vh;
    box-shadow: var(--shadow-color) 0.5vh 0.5vh 1vh;
    gap: 5vh;
    padding: 5vh;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.control-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100vw - 20vh);
    height: 30vh;
    background-color: white;
    border: 0.25vh solid black;
    border-radius: 1.5vh;
    text-align: center;
    box-shadow: var(--shadow-color) 0.25vh 0.25vh 1vh;
    font-weight: bolder;
}

.add {
    background-color: var(--primary-color);
    font-size: 16vh;
}

.media-list {
    text-shadow: white 0.5vh 0.5vh 1vh, white -0.5vh 0.5vh 1vh, white 0.5vh -0.5vh 1vh, white -0.5vh -0.5vh 1vh;
}
