cfmgrv4/public/css/front/login.css
2024-10-21 10:00:24 +09:00

80 lines
1.2 KiB
CSS

.login-page {
background-image: url('/images/login-background.jpg');
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-content {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 40px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
width: 400px;
}
.login-title {
text-align: center;
margin-bottom: 30px;
color: #333;
}
.input-group {
margin-bottom: 20px;
}
.input-group label {
display: block;
margin-bottom: 5px;
color: #555;
}
.input-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.btn-login {
width: 100%;
padding: 12px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-bottom: 15px;
}
.login-options {
display: flex;
justify-content: space-between;
}
.btn-google,
.btn-facebook {
flex: 1;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
text-align: center;
text-decoration: none;
}
.btn-google {
background-color: #db4437;
color: white;
margin-right: 10px;
}
.btn-facebook {
background-color: #28a745;
color: white;
}