body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 1000px;
    height: 600px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.left-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f9fc;
}

.left-panel h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.left-panel p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-right: 15px;
}

.feature-card span {
    font-weight: 500;
    color: #1e293b;
}

.right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container {
    max-width: 380px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1e293b;
}

.logo i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 10px;
}

.right-panel h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #1e293b;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.btn-get-started {
    width: 100%;
    padding: 15px;
    background-color: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-get-started:hover {
    background-color: #2563eb;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.login-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}
   /* .logo {
      display: flex;
      align-items: center;
      font-family: Arial, sans-serif;
      font-size: 26px;
      font-weight: bold;
      color: #2c3e50;
    }

    .logo-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #27ae60, #4c6ef5);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 14px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      color: white;
      font-size: 28px;
    }

    .logo span {
      color: #eeeeef;
    }

    */

    .logo {
      display: flex;
      align-items: center;
      font-family: Arial, sans-serif;
      font-size: 26px;
      font-weight: bold;
      color: #2c3e50;
    }

    .logo-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #27ae60, #4c6ef5);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 14px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      color: white;
      font-size: 28px;
    }

    .logo span {
      color: #4c6ef5;
    }