/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('./back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  

  .wrapper {
    width: 420px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    text-align: center;
  }
  
  .wrapper h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  /* Tab Buttons */
  .tab-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .tab-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: 600;
  }
  
  .tab-btn.active {
    background: #fff;
    color: #333;
    border-radius: 20px;
  }
  
  /* Forms */
  .form {
    display: none;
  }
  
  .form.active {
    display: block;
  }
  
  /* Input Fields */
  .input-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .input-box input {
    width: 100%;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .input-box input::placeholder {
    color: #fff;
  }
  
  /* Icons */
  .input-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
  }
  
  /* Button */
  .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    border-radius: 40px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .register-link {
    font-size: 14.5px;
    margin-top: 15px;
  }
  
  .register-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .register-link a:hover {
    text-decoration: underline;
  }
  