body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    padding: 20px;
}

.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    overflow: hidden;
}

.login-section {
    padding: 40px;
}

.tutorial-section {
    padding: 40px;
    background-color: #f9f9f9;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 32px;
}
  
  .logo {
    max-width: 180px;
    height: auto;
    display: block;
  }

.login-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.login-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }

.login-form-container h2 {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: bold;

}

.google-btn-container {
    display: flex;
    justify-content: center;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.google-btn:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
    text-decoration: none;
    color: #333;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.tutorial-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .video-placeholder {
    background-color: #ddd;
    width: 100%;
    height: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

/* Responsive adjustments */
@media (max-width: 900px) {
    .login-container {
      flex-direction: column;
      gap: 0;
      max-width: 95vw;
    }
    .tutorial-section {
      border-top-right-radius: 0;
      border-bottom-left-radius: 8px;
    }
  }
  
  @media (max-width: 600px) {
    .login-section, .tutorial-section {
      padding: 24px 8px;
    }
    .login-title {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .tutorial-title {
      font-size: 18px;
      margin-bottom: 16px;
    }
    .video-placeholder {
      height: 180px;
    }
  }