474 lines
9.4 KiB
CSS
474 lines
9.4 KiB
CSS
/* assets/styles/loginpage/login.css */
|
|
|
|
/* Main Background */
|
|
.login-background {
|
|
background: linear-gradient(135deg, #FFC857 0%, #FF9B1B 25%, #FF8F00 50%, #FF6F00 75%, #E65100 100%);
|
|
min-height: 100vh;
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding-top: 64px;
|
|
}
|
|
|
|
.login-background::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 10% 20%, rgba(255, 200, 87, 0.4) 0%, transparent 50%),
|
|
radial-gradient(circle at 90% 80%, rgba(255, 155, 27, 0.4) 0%, transparent 50%),
|
|
radial-gradient(circle at 50% 50%, rgba(230, 81, 0, 0.3) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Navigation Bar */
|
|
.navbar {
|
|
background: rgba(255, 255, 255, 0.1) !important;
|
|
backdrop-filter: blur(50px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
position: fixed !important;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.brand-logo {
|
|
color: white;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.nav-link {
|
|
color: white !important;
|
|
text-transform: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Floating Medical Icons */
|
|
.floating-medical-icon {
|
|
position: absolute;
|
|
animation: dvdBounce 20s linear infinite;
|
|
opacity: 0.8;
|
|
transition: opacity 0.3s ease;
|
|
z-index: 1;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
}
|
|
|
|
.floating-medical-icon:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.floating-medical-icon .v-icon {
|
|
color: rgba(255, 255, 255, 0.15) !important;
|
|
}
|
|
|
|
.icon-1 {
|
|
top: 0%;
|
|
left: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 25s;
|
|
animation-name: dvdBounce1;
|
|
}
|
|
|
|
.icon-1 .v-icon {
|
|
color: rgba(6, 37, 83, 0.15) !important;
|
|
}
|
|
|
|
.icon-2 {
|
|
top: 0%;
|
|
right: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 30s;
|
|
animation-name: dvdBounce2;
|
|
}
|
|
|
|
.icon-2 .v-icon {
|
|
color: rgba(15, 180, 70, 0.12) !important;
|
|
}
|
|
|
|
.icon-3 {
|
|
bottom: 0%;
|
|
left: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 22s;
|
|
animation-name: dvdBounce3;
|
|
}
|
|
|
|
.icon-3 .v-icon {
|
|
color: rgba(23, 178, 206, 0.18) !important;
|
|
}
|
|
|
|
.icon-4 {
|
|
top: 50%;
|
|
left: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 28s;
|
|
animation-name: dvdBounce4;
|
|
}
|
|
|
|
.icon-4 .v-icon {
|
|
color: rgba(223, 8, 8, 0.14) !important;
|
|
}
|
|
|
|
.icon-5 {
|
|
bottom: 0%;
|
|
right: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 26s;
|
|
animation-name: dvdBounce5;
|
|
}
|
|
|
|
.icon-5 .v-icon {
|
|
color: rgba(148, 15, 236, 0.16) !important;
|
|
}
|
|
|
|
.icon-6 {
|
|
top: 25%;
|
|
left: 0%;
|
|
animation-delay: 0s;
|
|
animation-duration: 24s;
|
|
animation-name: dvdBounce6;
|
|
}
|
|
|
|
.icon-6 .v-icon {
|
|
color: rgba(87, 48, 5, 0.13) !important;
|
|
}
|
|
|
|
/* DVD Bounce Animation 1 - Top Left to Bottom Right */
|
|
@keyframes dvdBounce1 {
|
|
0% { transform: translate(0, 0); }
|
|
25% { transform: translate(80vw, 70vh); }
|
|
50% { transform: translate(20vw, 10vh); }
|
|
75% { transform: translate(70vw, 80vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* DVD Bounce Animation 2 - Top Right to Bottom Left */
|
|
@keyframes dvdBounce2 {
|
|
0% { transform: translate(0, 0); }
|
|
25% { transform: translate(-75vw, 60vh); }
|
|
50% { transform: translate(-30vw, 20vh); }
|
|
75% { transform: translate(-85vw, 75vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* DVD Bounce Animation 3 - Bottom Left to Top Right */
|
|
@keyframes dvdBounce3 {
|
|
0% { transform: translate(0, 0); }
|
|
25% { transform: translate(70vw, -60vh); }
|
|
50% { transform: translate(40vw, -80vh); }
|
|
75% { transform: translate(90vw, -30vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* DVD Bounce Animation 4 - Middle Left across screen */
|
|
@keyframes dvdBounce4 {
|
|
0% { transform: translate(0, 0); }
|
|
16.6% { transform: translate(60vw, -30vh); }
|
|
33.3% { transform: translate(90vw, 20vh); }
|
|
50% { transform: translate(50vw, 40vh); }
|
|
66.6% { transform: translate(10vw, -20vh); }
|
|
83.3% { transform: translate(80vw, -40vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* DVD Bounce Animation 5 - Bottom Right to Top Left */
|
|
@keyframes dvdBounce5 {
|
|
0% { transform: translate(0, 0); }
|
|
25% { transform: translate(-60vw, -70vh); }
|
|
50% { transform: translate(-90vw, -20vh); }
|
|
75% { transform: translate(-40vw, -80vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* DVD Bounce Animation 6 - Complex zigzag pattern */
|
|
@keyframes dvdBounce6 {
|
|
0% { transform: translate(0, 0); }
|
|
14.3% { transform: translate(50vw, 30vh); }
|
|
28.6% { transform: translate(85vw, -20vh); }
|
|
42.9% { transform: translate(30vw, 60vh); }
|
|
57.1% { transform: translate(70vw, 10vh); }
|
|
71.4% { transform: translate(15vw, 70vh); }
|
|
85.7% { transform: translate(80vw, 40vh); }
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
/* Main Card - Contains Both Sections */
|
|
.main-card {
|
|
z-index: 3;
|
|
max-width: 1100px;
|
|
margin: 2rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.white-card {
|
|
background: white !important;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
box-shadow:
|
|
0 20px 50px rgba(0, 0, 0, 0.15),
|
|
0 8px 25px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Left Section Styling */
|
|
.text-section-box {
|
|
background: linear-gradient(135deg, #61cbdd 0%, #4194c4 50%, #2089b9 100%);
|
|
min-height: 600px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.text-section-box::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 100%;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero-title-box {
|
|
color: white;
|
|
font-size: 2.5rem;
|
|
font-weight: 900;
|
|
line-height: 1.1;
|
|
margin-bottom: 0.5rem;
|
|
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.hero-description-box {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
margin-top: 2rem;
|
|
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.hospital-logo-large {
|
|
height: 80px;
|
|
width: auto;
|
|
filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
|
|
}
|
|
|
|
/* Right Section Styling */
|
|
.login-section-box {
|
|
background: white;
|
|
min-height: 600px;
|
|
}
|
|
|
|
.login-content {
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* White Dialog Styles */
|
|
.white-dialog {
|
|
background: white !important;
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* Card Header - Dark Text */
|
|
.welcome-title-dark {
|
|
color: #37474F;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.login-instruction-dark {
|
|
color: #546E7A;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.3px;
|
|
}
|
|
|
|
/* App Title - Dark */
|
|
.app-title-dark {
|
|
color: #0053AD;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.hospital-logo {
|
|
height: 64px;
|
|
width: auto;
|
|
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
|
|
}
|
|
|
|
.sso-text-dark {
|
|
color: #546E7A;
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Buttons */
|
|
.login-btn {
|
|
background: linear-gradient(135deg, #0053AD 0%, #0663C7 50%, #0671E0 100%) !important;
|
|
color: white !important;
|
|
border: none;
|
|
box-shadow:
|
|
0 8px 25px rgba(0, 83, 173, 0.3),
|
|
0 4px 12px rgba(0, 83, 173, 0.2);
|
|
transition: all 0.3s ease;
|
|
text-transform: none;
|
|
font-size: 1rem;
|
|
height: 56px;
|
|
}
|
|
|
|
.login-btn:hover {
|
|
transform: translateY(-2px);
|
|
background: linear-gradient(135deg, #004A9B 0%, #0558B0 50%, #0661CA 100%) !important;
|
|
box-shadow:
|
|
0 12px 30px rgba(0, 83, 173, 0.4),
|
|
0 6px 15px rgba(0, 83, 173, 0.3);
|
|
}
|
|
|
|
.register-btn-dark {
|
|
color: #0053AD !important;
|
|
border: 2px solid #0053AD !important;
|
|
background: transparent !important;
|
|
transition: all 0.3s ease;
|
|
text-transform: none;
|
|
height: 48px;
|
|
}
|
|
|
|
.register-btn-dark:hover {
|
|
background: rgba(0, 83, 173, 0.05) !important;
|
|
border-color: #0663C7 !important;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* Custom Divider - Dark */
|
|
.custom-divider-dark {
|
|
border-color: rgba(0, 0, 0, 0.12) !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
/* Help Text and Links - Dark */
|
|
.help-text-dark {
|
|
color: #546E7A;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.contact-link-dark {
|
|
color: #0053AD !important;
|
|
text-decoration: underline;
|
|
text-transform: none;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.help-link-dark {
|
|
color: #78909C;
|
|
font-size: 0.85rem;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.help-link-dark:hover {
|
|
color: #0053AD;
|
|
}
|
|
|
|
/* Transparent Background */
|
|
.transparent {
|
|
background: transparent !important;
|
|
}
|
|
|
|
/* Navigation Dropdown Styles */
|
|
.nav-dropdown {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
|
|
min-width: 220px;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.dropdown-item {
|
|
color: #FF9B1B;
|
|
transition: all 0.3s ease;
|
|
border-radius: 8px;
|
|
margin: 4px 8px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
background: linear-gradient(135deg, #FF9B1B 0%, #FF8F00 100%);
|
|
color: white;
|
|
transform: translateX(4px);
|
|
}
|
|
|
|
.dropdown-item .v-icon {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.dropdown-item:hover .v-icon {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.nav-link {
|
|
text-transform: none;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 960px) {
|
|
.login-background {
|
|
padding-top: 56px;
|
|
}
|
|
|
|
.main-card {
|
|
margin: 1rem;
|
|
}
|
|
|
|
.text-section-box {
|
|
min-height: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-section-box {
|
|
min-height: auto;
|
|
}
|
|
|
|
.hero-title-box {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero-description-box {
|
|
font-size: 0.95rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.login-background {
|
|
padding-top: 56px;
|
|
}
|
|
|
|
.main-card {
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
.hero-title-box {
|
|
font-size: 1.75rem;
|
|
}
|
|
|
|
.text-section-box,
|
|
.login-section-box {
|
|
padding: 1.5rem !important;
|
|
}
|
|
} |