109 lines
1.8 KiB
CSS
109 lines
1.8 KiB
CSS
/* Allgemeine Einstellungen */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
|
|
body {
|
|
background: #f8f9fa;
|
|
color: #333;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Wrapper */
|
|
.wrapper {
|
|
background: #ffffff;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
text-align: center;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Input-Box */
|
|
.input-box {
|
|
position: relative;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.input-box input {
|
|
width: 100%;
|
|
padding: 12px 40px 12px 15px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
|
|
/* Styling für das Schloss-Icon */
|
|
.input-box i {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 15px;
|
|
transform: translateY(-50%);
|
|
color: #888;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Remember and Forgot */
|
|
.remember-forgot {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.remember-forgot a {
|
|
color: #ff6600;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.remember-forgot a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Button */
|
|
.btn {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
background: #ff6600;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: #e95b00;
|
|
}
|
|
|
|
/* Register-Link */
|
|
.register-link {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.register-link a {
|
|
color: #ff6600;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.register-link a:hover {
|
|
text-decoration: underline;
|
|
} |