@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  padding:0;
  margin:0;
  outline: none;
  border: none;
  font-family: poppins;
}
body {
    background-image: url(../images/back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
#reset-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    width: 600px;
    padding: 50px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.329);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.055);
    overflow: hidden;
}
h2 {
    font-size: 3rem;
    color: white;
    margin: 0 0 50px;
    letter-spacing: 3px;
}
.input-wrap {
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    height: 55px;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.753);
}

input {
    background-color: transparent;
    font-size: 1.2rem;
    color: white;
    padding: 5px 25px;
    width: 100%;
}

input::placeholder {
    font-size:  1.2rem;
    color: white;

}
.reset-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
button {
    font-size: 1.2rem;
    height: 60px;
    width: 90%;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
button:hover {
    background-color: rgb(212, 209, 209);
}
.input-wrap a {
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
}

.uid {
    box-sizing: border-box;
    padding-right: 20px;
    white-space: nowrap;
}
.code {
    box-sizing: border-box;
    padding-right: 20px;
    white-space: nowrap;
}