@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: url('images/cool-background.png') no-repeat center center/cover;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    color: #fff;
    position: relative;
}

.form {
    padding: 20px;
    width: 400px;
    /* height: 400px; */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    letter-spacing: 4px;
    padding: 0;
    margin-bottom: 30px;
}

input, button {
    display: flex;
    margin: 20px auto;
    width: 90%;
    font-size: 16px;
    padding: 10px;


    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 13px 21px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #fff;
}

button {
    cursor: pointer;
    color: #fff;
    letter-spacing: 1px;
    justify-content: center;
    background-color: rgb(3, 94, 94);
    transition: 0.5s ease;
}

button:hover {
    background-color: rgb(100, 175, 175);
    color: rgb(2, 46, 46);
}

.forgot-signup {
    margin: 17px;
    display: flex;
    justify-content: space-between;;
  }
  
a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.triangle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: lightblue;
}

.triangle1 {
    clip-path: polygon(33% 0, 14% 71%, 100% 47%);
    background: rgb(3, 94, 94);
    right: 59%;
    top: 68%;
}

.triangle2 {
    clip-path: polygon(63% 2%, 89% 69%, 11% 57%);
    background: rgb(125, 206, 206);
    left: 59%;
    bottom: 66%;
}

.move-down {
    transform: translate(5%,228%);
    transition: transform 3s ease;
}

.move-up {
    transform: translate(-12%,-216%);
    transition: transform 3s ease;
}

.move {
    transform: translate(0);
    transition: transform 3s ease;
}
