* {
    box-sizing: border-box; 
    margin:0;
    padding:0;
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e0ebf1;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .left-panel {
    flex: 1 1 300px;
    background-color:darkcyan;
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .left-panel h1 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  
  .left-panel p {
    font-size: 15px;
    opacity: 0.9;
  }
  
  .logo {
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .testimonial {
    background-color:rgb(12, 181, 181);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
  }
  
  .testimonial img {
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .testimonial .user {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  
  .user-name {
    line-height: 1.2;
  }
  
  .right-panel {
    flex: 2 1 400px;
    background: #f3faff;
    padding: 40px 30px;
  }
  
  .right-panel h2 {
    margin-bottom: 10px;
  }
  
  .right-panel label {
    display: block;
    margin: 20px 0 5px;
    font-size: 14px;
  }
  
  .input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .input-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .input-option input {
    accent-color: #3949ff;
  }
  
  input[type="email"],
  input[type="password"],
  input[type="text"] {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    font-size: 14px;
  }
  
  .button {
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    background-color:darkcyan;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
.button:hover
{
  background-color:white;
  color:darkcyan;
  border-style:groove;
  border-color: darkcyan;
}

  .signin-link {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
.signin-link a 
{
    color: #3949ff;
    text-decoration: none;
    font-weight: bold;
  
}
  