.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.35);
    background-image: url("./imgs_and_pdf/Login_UI/bg10.jpg");
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: center;
    background-attachment: fixed;
    font-size: clamp(18px, 1.5vw, 30px);
}

.greetings {
    width: 1fr;
    height: 1fr;
    margin-top: 50px;
    font-size: clamp(20px, 2vw, 30px);
}

.greetings > div,a {
    color: aliceblue;
}

.login {
    width: 100%;
    height: 30%;
    margin-top: 20px;
    margin-bottom: 315px;
    font-size: clamp(15px, 1.5vw, 30px);
    display: grid;
    grid-template-columns: 1fr 0.5fr;
}

.content {
    padding: 50px;
}

.topLeft, .topRight, .bottomLeft, .bottomRight {
    width: 100%;
    height: 100%;
}

.topLeft {
    display: grid;
    grid-template-columns: clamp(120px, 13vw, 200px) 2.8fr;
}

label {
    color: orange;
}

input {
    width: clamp(200px, 50%, 500px);
    height: clamp(15px, 50%, 50px);
    padding: 3px 10px;
    background-color: rgba(251, 247, 247, 0.122);
    border: 1px solid rgb(209, 207, 207);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: clamp(15px, 1.5vw, 30px);
    color: orange;
}

::placeholder {
    color: rgb(255, 165, 0, 0.5);
}

.loginButton {
    width: 1fr;
    height: 1fr;
    background-color: rgb(161, 127, 255);
    border: none;
    color: aliceblue;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: clamp(12px, 1.5vw, 16px);
    border-radius: 5px;
    cursor: pointer;
}

.footer {
  width: 100%;
  background-color: rgb(100, 54, 226, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(6px, 0.7vw, 15px);
  font-weight: 0;
  position: absolute;
  bottom: 0;
  color: yellow;
}

@media (max-width: 640px) {
    .loginButton {
        padding: 3px 7px;
    }
}

@media (width < 920px) {
    .login {
        grid-template-columns: 1fr;
    }

    input {
        width: clamp(200px, 25%, 500px);
        height: clamp(15px, 25%, 50px);
    }
}