body {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter", sans-serif;
    font-style: normal;
	margin: 0;
	height: 100vh;
	background-color: #f5f5f7;
}

p {
    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    width: 30%;
}

.main form {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

input[type="password"] {
    background: #e0e0e0;
    font-weight: 400;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    color: #505050;
    font-size: 1rem;
}

button {
    font-size: 1.2rem;
    font-weight: 500;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 1rem;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .main {
        width: 75%;
        margin-bottom: 3rem;
    }
}