:root {
    --bg-color: #ffffff;
    --card-bg: #1a1b2e;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --text: #ffffff;
    --text-secondary: #9ca3af;
    --border: #374151;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.container {
    width: 100%;
    max-width: 28rem;
}
.welcome-card, .auth-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
}

.logo {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: url('elim-logo.png') no-repeat center;
    background-size: contain;
}

h1, h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}
a {
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
}

.input-group {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: white;
}
input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}
.auth-switch {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    text-align: center;
}
.auth-switch a {
    color: var(--primary);
}
.service-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0)
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 25px;
    justify-content: center;

}
.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 250px;
    margin-bottom: 25px;
}
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.card h3 {
    font-size: 1.2em;
    margin: 15px 0 10px;
    color: #007BFF;
}
.card p {
    font-size: 0.9em;
    padding: 0 15px 15px;
    color: #666;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(188, 190, 190);
    color: var(--text);
    box-shadow: 0 4px 8px rgba(252, 252, 252, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-logo img {
    width: 50px;
    height: auto;
}
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.header-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.header-nav a:hover {
    color: var(--primary);
}
.header-menu-icon {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}
._success {
        padding: 45px;
        width: 100%;
        text-align: center;
        margin: 40px auto;
    }
._success i {
    font-size: 55px;
    color: #28a745;
}
._success h2 {
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}