:root {
    /* za koristenje rem mjera */
    font-size: 16px;
    font-family: 'Montserrat';

    --text-primary: #ececec;
    --text-secondary: #ececec;
    --bg-primary: #337895;
    --bg-secundary: #F89B3E;

    /* za navigaciju */
    --transition-speed: 600ms;

    /* tako da se ne prilagodava za dark mode */
    color-scheme: light only;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fcf4f3;
    /* STARA TEMA */
    /* background-image: url('../img/back.svg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
}

.container {
    width: 15%;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.8);
    /* STARA TEMA */
    /* background-color: rgba(255, 255, 255, 0.4); */
    border-radius: 30px;
    margin: auto;
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 250px;
    height: 100px;
    padding-top: 2rem;
}

.buttonFrame {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
}

.button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;

    width: 150px;
    height: 50px;

    background-color: var(--bg-secundary);
    border-radius: 15px;
    color: aliceblue;
    font-size: 1.2rem;
}

.box {
    width: 250px;
    margin: 0px auto;
}

label {
    display: block;
}

form {
    --text-color: rgb(94, 94, 94);
}

.input {
    width: 100%;
    padding: 15px 5px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    /* STARA TEMA */
    /* background: rgba(255, 255, 255, 0.4); */
    font-size: 1.2rem;
}

.input-top {
    border-bottom: 2px solid var(--bg-secundary);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.input-bottom {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* POP UP */
.blurForClearFormPopup.active {
    filter: blur(15px);
    pointer-events: none;
    user-select: none;
    --webkit-user-select: none;
}

.clearFormPopup {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;

    /* Glass efekt */
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.60);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.clearFormPopup.active {
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}

/* TABLET */
@media only screen and (max-width: 1920px) {
    .container {
        width: 30%;
    }
}

@media only screen and (max-width: 768px) {
    body {
      /* STARA TEMA */
      /* background-image: url('../img/back-moba.svg'); */
    }

    .container {
        width: 90%;
    }
}