* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #25252b;
}

@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.boxQuotes {
    position: relative;
    width: 500px;
    height: 200px;
    /* background: white; */
    filter: drop-shadow(0 25px 50px rgb(255, 255, 255));
    /* border-radius: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, .1);
}

.box {
    position: relative;
    width: 400px;
    height: 200px;
    background: repeating-conic-gradient(from var(--a), #ff2770 0%, #ff2770 5%, transparent 5%, transparent 40%, #ff2770 50%);
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;
    animation: rotating 4s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.box:hover {
    width: 450px;
    height: 500px;
}

@keyframes rotating {
    0% {
        --a: 0deg;
    }

    100% {
        --a: 360deg;
    }
}

.box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 200px;
    background: repeating-conic-gradient(from var(--a), #45f3ff 0%, #45f3ff 5%, transparent 5%, transparent 40%, #45f3ff 50%);
    filter: drop-shadow(0 15px 50px #000);
    border-radius: 20px;
    animation: rotating 4s linear infinite;
    animation-delay: -1s;
}

.box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #2d2d39;
    border-radius: 15px;
    border: 8px solid #25252b;
}


.login {
    position: absolute;
    inset: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    background: rgb(0, 0, 0, 0.5);
    z-index: 1000;
    box-shadow: inset 0 10px 20px rgb(0, 0, 0, 0.5);
    border-bottom: 2px solid rgb(255, 255, 255, 0.5);
    transition: 0.5s;
    color: #fff;
    overflow: hidden;
}

.box:hover .login {
    inset: 40px;
}

.loginBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 70%;
    transform: translateY(90px);
    transition: 0.5;
}

.box:hover .loginBx {
    transform: translateY(0px);
}

.loginBx h2 {
    /* text-transform: uppercase; */
    /* width: fit-content; */
    /* letter-spacing: 0.2em; */
}

.loginBx input {
    width: 100%;
}