69 lines
1.1 KiB
CSS

.login-container {
background-color: #fff;
padding: 40px 30px;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
text-align: center;
margin: 50px auto; /* Zentriert das Formular */
}
.login-title {
font-size: 26px;
font-weight: 600;
margin-bottom: 25px;
color: #333;
}
.login-form .input-group {
position: relative;
margin-bottom: 20px;
}
.login-form input {
width: 100%;
padding: 12px 15px 12px 15px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
outline: none;
}
.login-form .icon {
display: none;
}
.login-btn {
width: 100%;
padding: 12px;
background: #ff6600;
color: white;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.login-btn:hover {
background: #e95b00;
}
.register-text {
margin-top: 20px;
font-size: 14px;
color: #555;
}
.register-text a {
color: #ff6600;
text-decoration: none;
font-weight: 500;
}
.register-text a:hover {
text-decoration: underline;
}