44 lines
1.0 KiB
CSS
44 lines
1.0 KiB
CSS
/* --------------------------------------------------------------
|
|
Public Styles for Custom Login URL
|
|
-------------------------------------------------------------- */
|
|
.login-custom-form {
|
|
max-width: 400px;
|
|
margin: 50px auto;
|
|
padding: 30px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
}
|
|
.login-custom-form h2 {
|
|
margin-top: 0;
|
|
color: #2c3e50;
|
|
text-align: center;
|
|
}
|
|
.login-custom-form label {
|
|
display: block;
|
|
margin-bottom: 12px;
|
|
font-weight: 600;
|
|
color: #34495e;
|
|
}
|
|
.login-custom-form input[type="submit"] {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: #2c3e50;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
transition: background 0.2s;
|
|
}
|
|
.login-custom-form input[type="submit"]:hover {
|
|
background: #1a252f;
|
|
}
|
|
.login-custom-form .forgot {
|
|
margin-top: 15px;
|
|
text-align: center;
|
|
}
|
|
.login-custom-form .forgot a {
|
|
color: #2c3e50;
|
|
text-decoration: underline;
|
|
} |