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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color:rgb(193, 231, 193);
}

body a {
    text-decoration: none;
    margin-top: 30px;
    color: rgb(83, 151, 83);
}

.wrapper {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.575);
}

h1 {
    color: rgb(66, 66, 66);
}

p {
    margin-top: 10px;
    color: rgb(121, 121, 121);
}

input {
    width: 100%;
    background-color: transparent;
    color: rgb(143, 143, 143);
    border: 1px solid rgb(190, 190, 190);
    border-radius: 8px;
    padding: 10px;
    margin-top: 30px;
}

input:focus-visible {
    outline: none;
}

button {
    width: 100%;
    background-color: rgb(83, 151, 83);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 30px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(83, 151, 83, 0.678);
}