@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Caveat+Brush&family=Euphoria+Script&display=swap');

:root {
    --color00: #D5FCFF;
    --color01: #65B0B5;
    --color02: #8EF8FF;
    --color03: #B297FF;
    --color04: #F9D1FF;
    --fonteprincipal: 'Euphoria Script', cursive;
    --fontesecundaria: 'Caveat Brush', cursive; /* 'Caveat', cursive; */
    --fonteextra: 'Caveat', cursive; /* 'Caveat Brush', cursive; */
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: var(--fontesecundaria);
}

h1, h2 {
    font-family: var(--fonteprincipal);
}

p {
    overflow-x: hidden;
}

body {
    background-image: url("../imgs/fundo.jpg");
    background-color: var(--color04);
    background-size: cover;
    background-attachment: fixed;

    width: 100%;
    height: 100vh;
}

p, a, label, button, input {
    text-decoration: none;
}

p.alert {
    color: red;
}

a:link {
    color: var(--color01);
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: var(--color03);
}

a:visited {
    color: var(--color01);
    text-decoration: none;
}

a:active {
    color: var(--color04);
}

.boxShadow, .card {
    background-color: white;
    box-shadow: 0px 0px 10px 5px #0000001a;
}

.box, .boxShadow, .card {
    border-radius: 30px;
    padding: 10px 20px;
}

.btn {
    border-radius: 20px;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
}

textarea:focus, input:focus, select:focus {
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
} 

/* PRELOADER */
div.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color00);
}

div.loader svg {
    transform: scale(2);
}

div.l {
    margin-top: 50px;
    color: var(--color03);
    font-family: var(--fontesecundaria);
}

.foot {
    font-size: 0.8em;
    color: #757575;
    position: absolute;
    bottom: 5px;
}

/* HEADER */
header {
    background-color: #F9D1FF;
    width: 100%;
    height: 70px;
    display: flex;
    padding: 10px;
    box-shadow: 0px 0px 10px 10px #0000001a;

    position: relative;
}

header .logo {
    margin: 10px;
    transform: scale(2);
}

header a img {
    width: 20px;
    margin: 18px 20px 18px 0px;
}

header .prim {
    margin-left: auto;
}

/* HEADER - USER */
header #user {
    transform: scale(2);
    margin: 20px 20px 10px 10px;
    cursor: pointer;
}

.i {
    border-radius: 50%;
    border: 1px solid var(--color03);
    margin: 15px 15px 10px 10px !important;
    box-shadow: 0px 0px 1px 1px #8888881a;
}

.conta {
    display: none;
    position: absolute;
    border-radius: 10px;
    margin: 70px 20px;
    max-width: 160px;

    right: 0;
    top: 0;
    z-index: 999;
}

.conta div {
    display: flex;
    margin: 5px;
}

.conta div i {
    margin-right: 10px;
}

.line {
    display: flex;
    width: 100%;
    height: .5px;
    background-color: black;
}
