@font-face {
    font-family: "poppins";
    src: url(../font/font-login/Poppins-Regular.ttf) format(truetype);
}
:root {
    box-sizing: border-box;
    --circle-1-color: #35261b;
    --circle-1-color-lighter: #846651;
    --circle-2-color: #b89d8d;
    --circle-2-color-darker: #543A14;
    --form-bgc: rgba(255, 255, 255, 0.13);
    --form-border-color:rgba(255, 255, 255, 0.13);
    --bgc-body: #080710;
    --submit-bgc: #522a17;
}
*,
*::after,
*::before {
    box-sizing: inherit;
}
body {
    font-family: "poppins";
    font-weight: 400;
    background-color: #080710;
    margin: 0;
    display: grid;
    height: 100vh;
    place-items: center;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    width: 530px;
    height: auto;
    position: relative;
}
form {
    color: white;
    width: 400px;
    height: auto;
    background-color: var(--form-bgc);
    padding: 50px 35px 35px;
    border: 2px solid var(--form-border-color);
    border-radius: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 30px -3px black;
    position: relative;
    top: -81px;
    left: 87px;
    z-index: 10;
}
.title-1 {
    color: #fff;
}
.titile-2 {
    color: #F7DCB9;
}
.title {
    display: flex;
    gap: 10px;
    text-align: center;
    justify-content: center;
}
.title-span {
    display: block;
    text-align: center;
    font-size: 32px;
    font-weight: 550;
    margin-bottom: 30px;
}
input, label {
    display: block;
    outline: none;
}
label {
    font-size: 16px;
    margin-bottom: 5px;
}
input {
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    border-radius: 3px;
    padding: 0 10px;
    color: #522a17;
}
input:focus::placeholder {
    color: transparent;
}
input::placeholder {
    color: #fff;
}
input:focus {
    background-color: #F7DCB9;
}
.username {
    margin-bottom: 30px;
}
.pass {
    margin-bottom: 50px;
}
#button {
    font-size: 18px;
    text-align: center;
    background-color: var(--submit-bgc);
    font-weight: 600;
    padding: 15px 0;
    color: #F7DCB9;
}
#button:hover {
    cursor: pointer;
}
.circle-1 {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-image: linear-gradient(117deg, var(--circle-1-color) 13%, var(--circle-1-color-lighter));
    position: absolute;
    right: 0px;
    bottom: 0px;
    animation: move_cirlce1 10s ease-in-out 300ms infinite alternate;
}
.circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-image: linear-gradient(337deg, var(--circle-2-color-darker) 15%, var(--circle-2-color));
    float: right;
    position: absolute;
    left: 0px;
    top: 0px;
    animation: move_cirlce2 10s ease-in-out 300ms infinite alternate;
}
@keyframes move_cirlce1 {
    form {
        right:0px;
        bottom:0px
    }

    to{
        right: 320px;
        bottom: 350px;
    }
}
@keyframes move_cirlce2 {
    form {
        left:0px;
        top:0px
    }

    to{
        left: 320px;
        top: 350px;
    }
}