/* Combined CSS for Login and Register pages - Turbo360-inspired styling */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --danger-color: #ea4335;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    line-height: 1.6;
}

/* Common container styles */
.login-container,
.register-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.register-container {
    max-width: 500px;
    padding: 3rem;
}

.login-container::before,
.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Header styles */
.logo {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header {
    margin-bottom: 2.5rem;
}

.login-header h1,
.register-header h1 {
    color: var(--gray-900);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.register-header h1 {
    font-size: 2.5rem;
}

.login-header p,
.register-header p {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 400;
}

.register-header p {
    font-size: 1.1rem;
}

/* Form styles */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-group.error input {
    border-color: var(--danger-color);
}

.form-group.error .error-text {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
    display: none;
}

.password-strength.show {
    display: block;
}

.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background: var(--danger-color);
}

.strength-fill.fair {
    width: 50%;
    background: var(--accent-color);
}

.strength-fill.good {
    width: 75%;
    background: var(--secondary-color);
}

.strength-fill.strong {
    width: 100%;
    background: var(--primary-color);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Form options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--primary-color);
}

.remember-me label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Checkbox group for register */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.125rem;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Button styles */
.login-btn,
.register-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.register-btn {
    padding: 1rem;
}

.login-btn:hover,
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-btn:active,
.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-btn::before,
.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::before,
.register-btn:hover::before {
    left: 100%;
}

/* Loading spinner */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Divider */
.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.divider span {
    background: var(--white);
    padding: 0 1.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Social login */
.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-login .register-container {
    margin-bottom: 2rem;
}

.social-btn {
    flex: 1;
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: var(--gray-50);
    transform: translateY(-1px);
}

.social-btn i {
    font-size: 1.25rem;
}

/* Links */
.signup-link,
.login-link {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.signup-link a,
.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

/* Messages */
.success-message {
    background: linear-gradient(135deg, var(--secondary-color), #22c55e);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

.error-message {
    background: linear-gradient(135deg, var(--danger-color), #ef4444);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* Dashboard Layout Styles */
.dashboard-body {
    background: var(--gray-100);
    margin: 0;
    padding: 0;
    display: block;
    min-height: 100vh;
}

/* Top Navigation Bar */
.top-nav {
    background: var(--white);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-item .fas {
    color: var(--gray-600);
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.nav-item:hover .fas {
    color: var(--primary-color);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Profile Menu */
.profile-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.profile-menu:hover {
    background: var(--gray-100);
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.dropdown-item.logout {
    color: var(--danger-color);
}

.dropdown-item.logout:hover {
    background: rgba(234, 67, 53, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.5rem 0;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 250px;
    height: calc(100vh - 70px);
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow-y: auto;
    z-index: 999;
}

.sidebar-header {
    padding: 1.5rem 1rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-header h3 {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-link:hover {
    background: var(--gray-50);
    color: var(--gray-900);
    border-left-color: var(--primary-color);
}

.sidebar-nav .nav-link.active {
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-left: 250px;
    margin-top: 70px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.content-header {
    margin-bottom: 2rem;
}

.content-header h1 {
    color: var(--gray-900);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.content-body {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.placeholder-content p {
    font-size: 1rem;
    color: var(--gray-500);
}

/* Account Management Styles */
.account-management-content {
    max-width: 1200px;
}

.cloud-providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cloud-provider-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cloud-provider-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cloud-provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cloud-provider-card:hover::before {
    opacity: 1;
}

.provider-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.provider-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cloud-provider-card:hover .provider-logo img {
    filter: grayscale(0%);
}

.provider-info {
    text-align: center;
    margin-bottom: 2rem;
}

.provider-info h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.provider-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.connection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 auto;
    width: fit-content;
}

.connection-status.connected {
    background: rgba(52, 168, 83, 0.1);
    color: var(--secondary-color);
}

.connection-status.disconnected {
    background: rgba(234, 67, 53, 0.1);
    color: var(--danger-color);
}

.connection-status.connecting {
    background: rgba(251, 188, 5, 0.1);
    color: var(--accent-color);
}

.connect-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.connect-btn.aws {
    background: linear-gradient(135deg, #FF9900, #FF7A00);
    color: var(--white);
}

.connect-btn.aws:hover {
    background: linear-gradient(135deg, #E68900, #E66A00);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.connect-btn.azure {
    background: linear-gradient(135deg, #0078D4, #005BA1);
    color: var(--white);
}

.connect-btn.azure:hover {
    background: linear-gradient(135deg, #106EBE, #004F8B);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.connect-btn.gcp {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: var(--white);
}

.connect-btn.gcp:hover {
    background: linear-gradient(135deg, #3367D6, #2E7D32);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.connect-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.connect-btn.connected {
    background: var(--secondary-color);
    color: var(--white);
}

.connect-btn.connected:hover {
    background: #2E7D32;
}

.connection-help {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.connection-help h4 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.help-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.help-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.help-item strong {
    color: var(--gray-900);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.help-item p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Connection Modal */
.connection-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.connection-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.modal-header h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--gray-900);
}

.connection-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.connection-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.connection-steps li:last-child {
    border-bottom: none;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-btn.secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-btn.secondary:hover {
    background: var(--gray-300);
}

.modal-btn.primary {
    background: var(--primary-color);
    color: var(--white);
}

.modal-btn.primary:hover {
    background: #1557B8;
}

/* Responsive Design */
@media (max-width: 640px) {
    .logo {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .register-container {
        margin: 1rem;
        padding: 2rem;
    }

    .register-header h1 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 1.5rem;
    }

    .social-login {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .login-container,
    .register-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .login-header h1 {
        font-size: 1.75rem;
    }

    .register-header h1 {
        font-size: 1.75rem;
    }

    .register-header p {
        font-size: 1rem;
    }

    .social-login {
        flex-direction: column;
    }
}

/* Animations */
.login-container,
.register-container {
    animation: slideInFromTop 0.6s ease-out;
}

.form-group.error input {
    animation: shake 0.5s ease-in-out;
}

.success-animation {
    animation: slideInFromTop 0.5s ease-out;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.heading-hold {
    font-weight: 600; 
    font-size: 18px;
}

.table-hold thead tr td {
    font-weight: 600;
    background-color: #F1F3F5 !important;
}

.content-body ul li {
    border: 1px solid #E2E8F0;
    display: inline-block;
    padding: 1.5rem 1.5rem;
    border-radius: 10px;
    background-color: #F6F8FB;
    margin: 1rem;
    text-align: center;
}

.content-body ul li a {
    margin-bottom: 15px;
    display: inline-block;
}

.account-i {
    border: 10px solid #E2E8F0;
    padding: 30px;
    border-radius: 15px;
    height: 450px;
    margin-bottom: 25px;
}

.account-i h2 {
    margin-top: 30px;
}

.account-i img {
    border-radius: 8px;
}
.profile-hold .show {
    border: 1px solid rgb(226 232 240);
}

.profile-hold .show li a {
    color: #4C4C5C;
    font-size: 15px;
    font-weight: 400;
}

.profile-hold .show li a:hover {
    border: none;
    box-shadow: none;
}

.profile-hold .show li i {
    color: #4C4C5C;
    margin-right: 10px;
}

.profile-hold .show li form a {
    border-top: 1px solid #E2E8F0;
    font-weight: 600;
    color: #FF5B5B;
}
