56 lines
974 B
CSS
56 lines
974 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: rgb(255, 79, 167);
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.login-container {
|
|
width: 320px;
|
|
padding: 30px;
|
|
background-color: #f8bbd0;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
color: #880e4f;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="email"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
width: 100%;
|
|
background-color: #880e4f;
|
|
color: white;
|
|
padding: 10px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="submit"]:hover{
|
|
background-color:#ad1457;
|
|
} |