@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    background: #111;
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: #fff;
}

.wrapper {
    margin-top: 10vh;
    text-align: center;
}

ul {
    color: #848484;
    list-style-type: none;
    display: inline-flex;
    padding: 0;
    font-size: 13px;
}

ul li {
    padding-right: 10px;
}

form {
    width: 400px;
    margin: 10vh auto;
    padding: 20px;
    border: 2px dashed #353535;
    background-color: #222;
    border-radius: 8px;
}

form p {
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

form input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #353535;
}

form button {
    color: #fff;
    background: #2d2d2d;
    border: none;
    width: 100%;
    height: 40px;
    margin-top: 15px;
    border-radius: 4px;
    transition: all .2s ease;
}

form button:hover {
    background: #383838;
}

form button:active {
    transform: translateY(2px);
}

.notification {
    width: 80%;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px auto;
}

.notification.error {
	width: 500px;
    background: #ce3e3e;
}

.notification.success {
	width: 500px;
    background: #36923b;
}
