@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
    width: 100%;
    padding-bottom: 50px;
}
  main {
      flex: 1; /* takes up available space */
    
    }

/* Navbar */
/*.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.6);
}*/
/*.nav-link {
      color: white !important;
    }*/

    /*.nav-link:hover{
    background-color: #e70000;
    font-size: 18px;
    }*/
    
    
.logo {
    font-size: 24px;
    font-weight: 700;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.links {
      margin-top: 20px;
      text-align: center;
      font-size: 14px;
      color: #4e60ff;
      cursor: pointer;
    }
.links a {
      color: #4e60ff;
      text-decoration: none;
      margin: 0 5px;
      cursor: pointer;
    }

.ship-now-btn {
      background-color: #ff4b2b;
      color: white !important;
      border-radius: 4px;
      padding:10px;
      text-decoration: none;
    }
    
/*.ship-now {
    background-color: #e70000;
    color: white;
    padding: 25px 40px;
    text-align: center;

    border: none;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    margin-left: 20px;
    cursor: pointer;
    font-weight: 600;
}*/

/* Banner section with left-aligned two-line heading */
.banner {
    padding: 60px 40px 30px;
    text-align: left;
    
    color: white;
}

.banner h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.banner h1 .red {
    color: red;
}

.banner p {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

/* Form container */
.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 30px;
    max-width: 500px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

/* Tabs */
.tabs {
    display: flex;
    
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
   
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    background: transparent;
    border-bottom: 2px solid red;
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Input and button styles */
input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group {
      margin-bottom: 18px;
    }

.form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border-radius: 10px;
      border: 1px solid #ccc;
      background: #f9f9f9;
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #007bff;
      outline: none;
      background: #fff;
    }

button[type="submit"] {
    background-color: #111;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

input[type="button"] {
    background-color: #111;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #333;
}

 footer {
     background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
     padding-top: 3px;
      text-align: center;
 position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
    }

