0% found this document useful (0 votes)
13 views

Csslog

Uploaded by

Davi
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Csslog

Uploaded by

Davi
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

body {

font-family: Arial, sans-serif;


display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}

.container {
background: #fff;
border: 1px solid #ccc;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}

form {
display: flex;
flex-direction: column;
}

label {
margin-bottom: 5px;
font-weight: bold;
}

input {
margin-bottom: 10px;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}

button {
padding: 10px;
border: none;
border-radius: 4px;
background-color: #0070f3;
color: white;
cursor: pointer;
margin-bottom: 10px;
}

button:hover {
background-color: #005bb5;
}

p {
margin-top: 10px;
}

a {
color: #0070f3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}

You might also like