filepath: c:\Users\HIIT\Documents\portfolio\style.css */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #74ebd5 0%, #ACB6E5 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0,123,255,0.95);
    box-shadow: 0 4px 24px rgba(0,123,255,0.18);
    border-radius: 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 10;
    animation: navbarFade 1s;
}

@keyframes navbarFade {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    filter: drop-shadow(0 2px 8px #fff);
    animation: logoBounce 1.2s;
}

@keyframes logoBounce {
    0% { transform: scale(0.7);}
    60% { transform: scale(1.2);}
    100% { transform: scale(1);}
}

.logo span {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #0056b3;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar li {
    margin: 0 18px;
    position: relative;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: 500;
    padding: 18px 0;
    display: block;
    transition: color 0.2s;
    position: relative;
}

.navbar a.active,
.navbar a:hover {
    color: #ffe082;
}

.navbar a::after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    background: #ffe082;
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar a.active::after,
.navbar a:hover::after {
    width: 80%;
}

.hero-section {
    text-align: center;
    padding: 60px 20px 30px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 30px;
}

.hero-section h1 {
    color: #007bff;
    font-size: 2.8em;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: fadeIn 1.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

.hero-section p {
    color: #333;
    font-size: 1.25em;
    margin-bottom: 32px;
    animation: slideUp 1.2s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 10px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    padding: 24px 18px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: zoomIn 1s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.feature-card img {
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px #007bff);
}

.feature-card h3 {
    color: #007bff;
    margin-bottom: 8px;
    font-size: 1.15em;
}

.feature-card p {
    color: #555;
    font-size: 0.98em;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}

.atm-container {
    background: #fff;
    padding: 36px 30px;
    margin: 40px auto 0 auto;
    width: 370px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.14);
    text-align: center;
    animation: fadeIn 1.2s;
}

.atm-title {
    color: #007bff;
    margin-bottom: 18px;
    font-size: 1.5em;
    letter-spacing: 1px;
    font-weight: 600;
}

#balance {
    font-size: 1.2em;
    margin-bottom: 24px;
    color: #333;
    animation: balancePulse 2s infinite;
}

@keyframes balancePulse {
    0%, 100% { color: #333;}
    50% { color: #007bff;}
}

input[type="number"] {
    width: 90%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 16px rgba(0,123,255,0.18);
}

.buttons {
    margin-bottom: 18px;
}

.buttons button {
    padding: 12px 32px;
    margin: 0 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff 60%, #74ebd5 100%);
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.buttons button::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.3s;
}

.buttons button:hover {
    background: linear-gradient(90deg, #0056b3 60%, #74ebd5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.buttons button:hover::after {
    opacity: 1;
}

#message {
    margin-top: 14px;
    color: #d9534f;
    font-size: 1em;
    min-height: 24px;
    animation: fadeIn 1s;
}

footer {
    text-align: center;
    padding: 18px 0;
    background: transparent;
    color: #333;
    font-size: 0.95em;
    margin-top: 40px;
    animation: fadeIn 1.5s;
}
/* ...existing code... */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: logoFadeIn 1.2s;
}

.logo img {
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 16px #007bff, 0 0 32px #74ebd5;
    animation: logoBounce 2s infinite, logoRotate 6s linear infinite;
    transition: box-shadow 0.3s;
}

.logo img:hover {
    box-shadow: 0 0 32px #ffe082, 0 0 64px #007bff;
    filter: brightness(1.2);
}

.logo span {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #0056b3;
    animation: logoTextGlow 2s infinite alternate;
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0);}
    20% { transform: translateY(-10px);}
    40% { transform: translateY(0);}
    60% { transform: translateY(-6px);}
    80% { transform: translateY(0);}
}

@keyframes logoRotate {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

@keyframes logoTextGlow {
    from { text-shadow: 0 2px 8px #0056b3, 0 0 10px #74ebd5;}
    to { text-shadow: 0 2px 16px #ffe082, 0 0 20px #007bff;}
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #74ebd5 0%, #ACB6E5 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0,123,255,0.95);
    box-shadow: 0 4px 24px rgba(0,123,255,0.18);
    border-radius: 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 10;
    animation: navbarFade 1s;
}

@keyframes navbarFade {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: logoFadeIn 1.2s;
}

.logo img {
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 16px #007bff, 0 0 32px #74ebd5;
    animation: logoBounce 2s infinite, logoRotate 6s linear infinite;
    transition: box-shadow 0.3s;
}

.logo img:hover {
    box-shadow: 0 0 32px #ffe082, 0 0 64px #007bff;
    filter: brightness(1.2);
}

.logo span {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #0056b3;
    animation: logoTextGlow 2s infinite alternate;
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0);}
    20% { transform: translateY(-10px);}
    40% { transform: translateY(0);}
    60% { transform: translateY(-6px);}
    80% { transform: translateY(0);}
}

@keyframes logoRotate {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

@keyframes logoTextGlow {
    from { text-shadow: 0 2px 8px #0056b3, 0 0 10px #74ebd5;}
    to { text-shadow: 0 2px 16px #ffe082, 0 0 20px #007bff;}
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar li {
    margin: 0 18px;
    position: relative;
    animation: navItemFade 1.2s;
}

@keyframes navItemFade {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08em;
    font-weight: 500;
    padding: 18px 0;
    display: block;
    transition: color 0.2s;
    position: relative;
}

.navbar a.active,
.navbar a:hover {
    color: #ffe082;
}

.navbar a::after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    background: #ffe082;
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar a.active::after,
.navbar a:hover::after {
    width: 80%;
}

.hero-section {
    text-align: center;
    padding: 60px 20px 30px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 30px;
    animation: fadeIn 1.2s;
}

.hero-section h1 {
    color: #007bff;
    font-size: 2.8em;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: fadeIn 1.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

.hero-section p {
    color: #333;
    font-size: 1.25em;
    margin-bottom: 32px;
    animation: slideUp 1.2s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 10px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    padding: 24px 18px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: zoomIn 1s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.feature-card img {
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px #007bff);
    animation: iconPulse 2s infinite alternate;
}

@keyframes iconPulse {
    from { filter: drop-shadow(0 2px 8px #007bff);}
    to { filter: drop-shadow(0 2px 16px #ffe082);}
}

.feature-card h3 {
    color: #007bff;
    margin-bottom: 8px;
    font-size: 1.15em;
}

.feature-card p {
    color: #555;
    font-size: 0.98em;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}

.atm-container {
    background: #fff;
    padding: 36px 30px;
    margin: 40px auto 0 auto;
    width: 370px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.14);
    text-align: center;
    animation: fadeIn 1.2s;
}

.atm-title {
    color: #007bff;
    margin-bottom: 18px;
    font-size: 1.5em;
    letter-spacing: 1px;
    font-weight: 600;
    animation: fadeIn 1.2s;
}

#balance {
    font-size: 1.2em;
    margin-bottom: 24px;
    color: #333;
    animation: balancePulse 2s infinite;
}

@keyframes balancePulse {
    0%, 100% { color: #333;}
    50% { color: #007bff;}
}

input[type="number"] {
    width: 90%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    animation: fadeIn 1.2s;
}

input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 16px rgba(0,123,255,0.18);
}

.buttons {
    margin-bottom: 18px;
}

.buttons button {
    padding: 12px 32px;
    margin: 0 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff 60%, #74ebd5 100%);
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s;
}

.buttons button::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.3s;
}

.buttons button:hover {
    background: linear-gradient(90deg, #0056b3 60%, #74ebd5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.buttons button:hover::after {
    opacity: 1;
}

#message {
    margin-top: 14px;
    color: #d9534f;
    font-size: 1em;
    min-height: 24px;
    animation: fadeIn 1s;
}

footer {
    text-align: center;
    padding: 18px 0;
    background: transparent;
    color: #333;
    font-size: 0.95em;
    margin-top: 40px;
    animation: fadeIn 1.5s;
}
/* Add below your existing CSS in style.css */
.about-values {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}
.value-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    padding: 24px 18px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: zoomIn 1s;
}
.value-card h3 {
    color: #007bff;
    margin-bottom: 8px;
    font-size: 1.15em;
}
.value-card p {
    color: #555;
    font-size: 0.98em;
}
.about-history {
    background: rgba(255,255,255,0.18);
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    text-align: center;
    margin: 0 40px 40px 40px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    animation: fadeIn 1.2s;
}
.about-history h2 {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}
.about-history p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 24px;
}
.timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    text-align: left;
}
.timeline li {
    margin-bottom: 12px;
    font-size: 1em;
    color: #555;
    position: relative;
    padding-left: 28px;
}
.timeline li span {
    font-weight: bold;
    color: #007bff;
    position: absolute;
    left: 0;
}
/* ...existing code... */

.team-members {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.member-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    padding: 18px 12px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: zoomIn 1s;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.member-card img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #007bff;
    box-shadow: 0 2px 8px #74ebd5;
}

.member-card h4 {
    color: #007bff;
    margin-bottom: 4px;
    font-size: 1.08em;
}

.member-card p {
    color: #555;
    font-size: 0.95em;
}

/* ...existing code... */
/* ...existing code... */

.contact-hero {
    text-align: center;
    padding: 60px 20px 30px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 30px;
    animation: fadeIn 1.2s;
}

.contact-title {
    color: #007bff;
    font-size: 2.5em;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: fadeIn 1.2s;
}

.contact-desc {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 32px;
    animation: slideUp 1.2s;
}

.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin: 0 40px 40px 40px;
    animation: fadeIn 1.2s;
    flex-wrap: wrap;
}

.contact-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.14);
    padding: 32px 28px;
    width: 350px;
    animation: zoomIn 1s;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-form:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
    transform: scale(1.03);
}

.form-group {
    margin-bottom: 22px;
    animation: fadeIn 1.2s;
}

.form-group label {
    display: block;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    margin-bottom: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 16px rgba(0,123,255,0.18);
}

.send-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff 60%, #74ebd5 100%);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s;
}

.send-btn:hover {
    background: linear-gradient(90deg, #0056b3 60%, #74ebd5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

.contact-info {
    background: rgba(255,255,255,0.18);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.10);
    padding: 32px 24px;
    width: 300px;
    animation: fadeIn 1.2s;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-info:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
    transform: scale(1.03);
}

.contact-info h3 {
    color: #007bff;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
}

.contact-info p {
    color: #333;
    font-size: 1em;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}
/* ...existing code... */

.login-hero {
    text-align: center;
    padding: 60px 20px 30px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 30px;
    animation: fadeIn 1.2s;
}

.login-title {
    color: #007bff;
    font-size: 2.5em;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: fadeIn 1.2s;
}

.login-desc {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 32px;
    animation: slideUp 1.2s;
}

.login-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 40px 40px 40px;
    animation: fadeIn 1.2s;
}

.login-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.14);
    padding: 32px 28px;
    width: 350px;
    animation: zoomIn 1s;
    transition: box-shadow 0.3s, transform 0.3s;
}

.login-form:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
    transform: scale(1.03);
}

.form-group {
    margin-bottom: 22px;
    animation: fadeIn 1.2s;
}

.form-group label {
    display: block;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    margin-bottom: 4px;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 16px rgba(0,123,255,0.18);
}

.login-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff 60%, #74ebd5 100%);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s;
}

.login-btn:hover {
    background: linear-gradient(90deg, #0056b3 60%, #74ebd5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}
/* ...existing code... */

.register-hero {
    text-align: center;
    padding: 60px 20px 30px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    margin-bottom: 30px;
    animation: fadeIn 1.2s;
}

.register-title {
    color: #007bff;
    font-size: 2.5em;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    animation: fadeIn 1.2s;
}

.register-desc {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 32px;
    animation: slideUp 1.2s;
}

.register-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 40px 40px 40px;
    animation: fadeIn 1.2s;
}

.register-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.14);
    padding: 32px 28px;
    width: 350px;
    animation: zoomIn 1s;
    transition: box-shadow 0.3s, transform 0.3s;
}

.register-form:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
    transform: scale(1.03);
}

.form-group {
    margin-bottom: 22px;
    animation: fadeIn 1.2s;
}

.form-group label {
    display: block;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #b0c4de;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    margin-bottom: 4px;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 2px 16px rgba(0,123,255,0.18);
}

.register-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #007bff 60%, #74ebd5 100%);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s;
}

.register-btn:hover {
    background: linear-gradient(90deg, #0056b3 60%, #74ebd5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(0,123,255,0.18);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}
