Home.css•1.48 kB
.home-container {
height: 100vh;
background: url('https://images.unsplash.com/photo-1588776814546-ec0f8136b2bb') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', sans-serif;
}
.home-overlay {
background: rgba(255, 255, 255, 0.92);
padding: 2.5rem 3rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
max-width: 700px;
}
.home-title {
font-size: 2.5rem;
margin-bottom: 0.5rem;
color: #007bff;
}
.home-sub {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #333;
}
.home-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.home-btn {
background: #007bff;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
.home-btn:hover {
background: #0056b3;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #004466;
padding: 10px 20px;
color: white;
}
.logo {
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
color: white;
}
.header-right {
display: flex;
gap: 10px;
}
.header-btn {
background: #ffffff20;
border: none;
color: white;
padding: 8px 12px;
cursor: pointer;
border-radius: 5px;
text-decoration: none;
}
.header-btn:hover {
background-color: #ffffff40;
}
.logout-btn {
background-color: #cc3333;
}