 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

.child {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      width: 100%;
}

.sub-child {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
      padding: 40px 30px;
      width: 450px;
      text-align: center;
    }

    h2 {
      margin: 0 0 10px;
      font-size: 22px;
      font-weight: 600;
    }

    p {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    }

    .input-box {
      width: 100%;
      margin-bottom: 15px;
    }

    .input-box input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
    }

   

    .trouble {
      font-size: 12px;
      color: black;
      text-align: left;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .sign-btn {
      width: 100%;
      background: #07ABBE;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #e08e45;
    }

    .or {
      margin: 15px 0;
      font-size: 13px;
      color: #777;
    }

    .social {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .social button {
      flex: 1;
      margin: 0 5px;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .social button:hover {
      background: #f1f1f1;
    }

    .footer-text {
      font-size: 13px;
      margin-top: 15px;
    }

    .footer-text a {
      text-decoration: none;
      color: #07ABBE;
      font-weight: 500;
    }

    .copyright {
      font-size: 12px;
      color: #777;
      margin-top: 20px;
    }

    .copyright a {
        color: red;
    }

@media screen and (min-width : 320px) and (max-width: 1099px) 
{

    .sub-child {
        width: 90%;
    }

}