@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: url(../images/business-741x415-5d8358a722/register.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.wrapper {
    background: #265A6A;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 5px #265A6A;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    width: 400px;
    height: 500px;
    padding: 40px;
}
.wrapper::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg, #265A6A, #eff4f5, #49a8c5, cyan, #187591, #37cdfb, #22505e);
  background-size: 400% 400%;
  animation: border-rotate 4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude; 
  z-index: -1;
}

@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.form-box h1 {
    text-align: center;
    color: #99e0f6;
    font-family: "Inter";
    margin-bottom: 30px;

}

.input-group {
    margin-bottom: 30px;
    font-family: "Inter";

}

.input-group label {
    display: block;
    color: #ffff;
    margin-bottom: 10px;
    font-family: "Inter";
}

.input-group input {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: none;
}

.input-group input:focus {
    box-shadow: 1px 1px 5px #5accef;
}

button {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: none;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    font-family: "Inter";
}

button::before {
    content: "";
    position: absolute;
    background: #87d6ee;
    z-index: -1;
    transition: width 0.5s ease;
    height: 100%;
    width: 0%;
    left: 0;
    top: 0;
}
button:hover::before {
    width: 100%;
}