iu9-ca-web-chat/assets/css/login.css

83 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2024-08-28 22:02:44 +00:00
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
2024-08-28 22:02:44 +00:00
background-color: #ffffff;
}
.form-container {
width: 100%;
2024-08-28 22:02:44 +00:00
max-width: 450px;
background-color: #0c39ce;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
2024-08-28 22:02:44 +00:00
border-radius: 12px;
padding: 50px;
text-align: center;
2024-08-28 22:02:44 +00:00
color: white;
transform: translateY(-40px);
}
h1 {
margin-bottom: 20px;
2024-08-28 22:02:44 +00:00
color: white;
}
input {
2024-08-28 22:02:44 +00:00
width: calc(100% - 50px);
background: #f0f0f0;
font-size: 16px;
2024-08-28 22:02:44 +00:00
padding: 12px;
border: 1px solid #ccc;
border-radius: 20px;
2024-08-28 22:02:44 +00:00
margin-bottom: 20px;
outline: none;
2024-08-28 22:02:44 +00:00
color: black;
margin-left: 25px;
}
button {
2024-08-28 22:02:44 +00:00
width: calc(100% - 50px);
padding: 15px;
border: none;
2024-08-28 22:02:44 +00:00
background-color: #024a7e;
color: white;
border-radius: 20px;
cursor: pointer;
outline: none;
2024-08-28 22:02:44 +00:00
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s;
2024-08-28 22:02:44 +00:00
margin-left: 25px;
}
button:hover,
button:focus-visible {
2024-08-28 22:02:44 +00:00
background-color: #28a745;
}
.hide-cursor::placeholder {
2024-08-28 22:02:44 +00:00
color: #777;
}
.hide-cursor {
caret-color: transparent;
}
.no-select {
2024-08-28 22:02:44 +00:00
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
div {
2024-08-28 22:02:44 +00:00
color: rgba(255, 0, 0, 0.911);
font-size: 15px;
margin-top: 10px;
display: none;
}