| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
- * {
- margin: 12px;
- margin-left: auto;
- margin-right: auto;
- padding: 0;
- max-width: 500px;
- outline: none;
- box-sizing: border-box;
- font-family: 'Poppins', sans-serif;
- }
- body {
- background-color: #f5f5f5;
- display: flex;
- justify-content: center;
- text-align: center;
- align-items: center;
- height: 100vh;
- }
- .text{
- background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .container {
- max-width: 500px;
- background-color: #fff;
- padding: 20px;
- border-radius: 8px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- }
- .text {
- text-align: center;
- font-size: 35px;
- font-weight: 600;
- margin-bottom: 20px;
- }
- .form-group {
- margin-bottom: 20px;
- }
- .form-group:hover{
- }
- .label {
- font-size: 16px;
- font-weight: 500;
- color: #333;
- }
- input[type="text"],
- input[type="password"] {
- width: 100%;
- padding: 10px;
- border: 1px solid #ccc;
- border-radius: 4px;
- font-size: 16px;
- }
- input:hover{
- border-color: #721c24;
- }
- button {
- width: 100%;
- padding: 12px;
- border: none;
- border-radius: 4px;
- background-color: #007bff;
- color: #fff;
- font-size: 16px;
- font-weight: 500;
- cursor: pointer;
- transition: background-color 0.3s;
- }
- button:hover {
- background-color: #0056b3;
- }
- .alert-danger {
- margin-top: 10px;
- padding: 10px;
- background-color: #f8d7da;
- border: 1px solid #f5c6cb;
- border-radius: 4px;
- color: #721c24;
- font-size: 14px;
- }
- p {
- text-align: center;
- margin-top: 20px;
- font-size: 16px;
- }
- a {
- display: block;
- text-align: center;
- margin-top: 10px;
- text-decoration: none;
- color: #007bff;
- font-size: 16px;
- }
- a:hover {
- text-decoration: underline;
- }
|