You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

85 lines
1.7 KiB

body.user-dashboard-bg {
background: linear-gradient(120deg, #4158D0 0%, #5068c8 46%, #70e7ff 100%);
min-height: 100vh;
}
.user-dashboard-header {
font-size: 2.2rem;
font-weight: 900;
color: #fff;
letter-spacing: 1px;
margin-top: 32px;
margin-left: 60px;
margin-bottom: 30px;
text-shadow: 0 2px 8px rgba(65,88,208,0.15);
text-align: left;
}
.user-dashboard-card {
background: #fff;
border-radius: 24px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
padding: 48px 32px;
max-width: 480px;
margin: 60px auto;
text-align: center;
}
.user-dashboard-title {
font-size: 2.5rem;
font-weight: 800;
color: #2d3748;
margin-bottom: 18px;
}
.user-dashboard-desc {
color: #6b7280;
font-size: 1.2rem;
margin-bottom: 32px;
}
.user-dashboard-btn {
background: #4158D0;
color: #fff;
border: none;
border-radius: 8px;
padding: 14px 36px;
font-size: 1.1rem;
font-weight: 600;
box-shadow: 0 2px 8px rgba(65,88,208,0.15);
transition: background 0.2s;
cursor: pointer;
}
.user-dashboard-btn:hover {
background: #C850C0;
color: #fff;
}
.user-dashboard-logout {
position: absolute;
top: 32px;
right: 60px;
z-index: 10;
}
.user-dashboard-logout-btn {
background: #e53e3e;
color: #fff;
border: none;
border-radius: 8px;
padding: 10px 22px;
font-size: 1rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 2px 8px rgba(229,62,62,0.15);
transition: background 0.2s;
cursor: pointer;
}
.user-dashboard-logout-btn:hover {
background: #c53030;
color: #fff;
}
.user-dashboard-logout-btn i {
font-size: 1.2rem;
}