<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="button.css">
</head>
<body>
<button>
S'enregistrer
</button>
<button class="button-2">
login
</button>
</body>
</html>
button {
color: #ffffff;
padding: 15px;
background-color: crimson;
font-size: 16px;
border: none;
border-radius: 33px;
}
.button-2 {
background: darkcyan;
}