:root {
    --background:rgb(175, 204, 246);
    --primary:white;
    --secondary:rgb(236, 239, 243);
    --accent:rgb(77, 77, 155);
    --text:black;
    --text-secondary:white;
    font-size:16px;
   
}

body {
background-color: var(--background);
color:var(--text);
margin:0;
font-family:"Rubik", sans-serif;
}

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

a:hover {
    color:var(--text-secondary);
}

h1 {
    color:var(--text);
    font-size:1.3rem;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:50px;
}

form {
    display:flex;
    flex-flow:column wrap;
    align-items: center;
    justify-content: center;
    gap:10px;
    width:auto;
    padding:20px;
    border-radius:5px;
    background-color:var(--primary);
}

input {
    font-family:"Rubik", sans-serif;
    border:none;
    padding:10px;
    border-radius:5px;
    background-color:var(--secondary);
}

input:focus {
    outline:2px solid var(--accent);
}

button {
    border:none;
    padding:10px;
    border-radius:5px;
    font-weight:600;
    font-family:"Rubik", sans-serif;
    transition:0.1s linear;
}

button:hover {
    background-color:var(--accent);
    color:var(--text-secondary);
cursor:pointer;
}