* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* LEFT SIDE */
.left {
  width: 40%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.left h1 {
  font-size:80px;
}
/* RIGHT SIDE */
 .right {
  background: #f4f4f4;
  width: 60%;
  padding: 20px;
  position: relative;
}

/* TOP BAR */
.top{
  background: #f4f4f4;
  text-align: center
}
.top-bar {
  gap: 45px;
  background: #f4f4f4;
  padding: 5px 5px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.connect-text {
    display: inline-flex;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px 75px;
    border-radius: 100px;
    background-color: #fff;
    margin: 20px 50px;
}

.top-logo {
    background-color: #eee;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 0px 0px;
    overflow: hidden;
    margin: 10px 2px;
   
}

.site-name {
  
  font-size: 20px;
}

.line {
  flex: 1;  /* stretch line across remaining space */
  height: .3px;
  background-color: #f4f4f4;
}

/* fetch button*/
.status-btn {
  width: 180px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  background: #39a814; /* green at start */
  transition: background 0.3s ease;
}   



/* FORM BOX */
.form-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-box h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.buttons-row {
  margin: 20px 0;
}

.word-btn {
  background: #eee;
  border: none;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.word-btn.active {
  background: #28a745;
  color: #fff;
}

.word-btn:hover {
  background: #ddd;
}

.input-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px;
}

.input-fields input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.next-btn {
  margin-top: 20px;
  background: #28a745;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.next-btn:hover {
  background: #218838;
}
