Select Git revision
login®ister.css
login®ister.css 1.62 KiB
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
/* Container for the form */
.container {
width: 100%;
max-width: 450px;
padding: 40px;
background-color: white;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
border-radius: 12px;
text-align: center;
box-sizing: border-box;
}
/* Heading */
h2 {
font-size: 28px;
margin-bottom: 30px;
color: #333;
font-weight: 600;
}
/* Input fields */
input {
width: 100%;
padding: 15px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
transition: all 0.3s ease-in-out;
}
/* Focus state for inputs */
input:focus {
outline: none;
border-color: #ff7e5f;
box-shadow: 0 0 5px rgba(255, 126, 95, 0.6);
}
/* Submit button */
button {
width: 100%;
padding: 15px;
background-color: #ff7e5f;
color: white;
font-size: 18px;
font-weight: 500;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
/* Hover effect for button */
button:hover {
background-color: #feb47b;
}
/* Forgot password and other links */
a {