@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --color1:rgb(35,67,117);
    --color2:rgb(25,82,142);
}

html,body {
    height: 100%;
}
* {
    font-family: "Lato", sans-serif;
}

body {
    background-image: linear-gradient(var(--color1) 0%, var(--color2) 100%);
    background-attachment: fixed;
}

h1#title {
    color: white;
    background-color: var(--color1);
}


.cover-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    opacity: 0.3;
    background: url(pgo.png);
    background-size: contain;
    background-position: center 15px;
    background-repeat: no-repeat;
}
#login {
    opacity: .9;
    backdrop-filter: blur(33px);
}
.logo {
    background: url(pgo.png);
    background-size: 100px;
    background-position: 15px;
    background-repeat: no-repeat;

}
.title {
    margin-left: 120px;
}
#ntfy input {
    transition: color .5s ease-in-out, background-color .5s ease-in-out;
}
.clipboard input{
    background-color: var(--color2);
    color:white;
}

.primary {
    background-color: var(--color2);
    color:white;
}