ok
This commit is contained in:
@@ -1,73 +1,85 @@
|
||||
.loginContainer {
|
||||
font-family: "Inter", sans-serif;
|
||||
background-color: #f0f5ff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
background: #f0f2f5;
|
||||
width: 100vw;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.loginBox {
|
||||
background: #fff;
|
||||
background-color: #ffffff;
|
||||
border-radius: 16px;
|
||||
padding: 40px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 80px;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.h1 {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 10px;
|
||||
font-size: 24px;
|
||||
color: #333;
|
||||
color: #d22129; /* 🔴 Warna merah PSI */
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 14px;
|
||||
color: #777;
|
||||
margin-bottom: 30px;
|
||||
color: #6b7280;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.input {
|
||||
padding: 10px 15px;
|
||||
margin-bottom: 15px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 6px;
|
||||
width: 100%;
|
||||
padding: 12px 15px;
|
||||
font-size: 16px;
|
||||
color: #1f2937;
|
||||
background-color: #f8f9fa;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.button {
|
||||
background-color: #337f83;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 12px;
|
||||
border-radius: 6px;
|
||||
font-size: 16px;
|
||||
background-color: #d22129; /* 🔴 Warna merah PSI */
|
||||
color: #ffffff;
|
||||
padding: 12px 24px;
|
||||
border-radius: 24px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
width: 100%;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #3c9a9f;
|
||||
background-color: #b71c1c; /* versi lebih gelap saat hover */
|
||||
}
|
||||
|
||||
.error {
|
||||
color: red;
|
||||
margin-bottom: 10px;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 20px;
|
||||
margin-top: 30px;
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user