body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    width: 900px;
    height: 600px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.left-panel {
    flex: 1;
    background-color: #eef4ff;
    padding: 40px;
    border-radius: 12px 0 0 12px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #4a5568;
}

.logo .material-icons {
    font-size: 24px;
    margin-right: 8px;
}

.dashboard-info {
    margin-top: 80px;
}

.dashboard-info h1 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 12px;
}

.dashboard-info p {
    font-size: 16px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 30px;
}

.features {
    display: flex;
    justify-content: center;
    align-items: baseline;
    height: auto;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 15px;


}

.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 100%;
    max-width: 350px;
}

.login-form h2 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-form label {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
}

.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder {
    color: #a0aec0;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
}

.remember-me label {
    margin-bottom: 0;
    color: #718096;
}


.features img{
    width: 50vh;
    height: 40vh;
    border-radius: 8px;
}


.forgot-password {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #4c6ef5;
    text-decoration: none;
    margin-top: -15px;
    margin-bottom: 20px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #4c6ef5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: #415ecb;
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #718096;
}

.signup-link a {
    color: #4c6ef5;
    text-decoration: none;
    font-weight: 500;
}

.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;
    }