*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --primary-color: #ffffff;
    --secodary-color: #f8f9fa;
    --accent-color: #0e1f3a;
    --text-color: #2a2a2a;
    --border-color: #e5e7eb;
    --highlight: #ffd700;
}

body{
    background: url(CARS\ 2.jpg) center/cover fixed;
    color: #fff;
}

.card{
    height: 450px; width: 400px;
    margin: 70px 70px;
    background-color: black;
    border: none;
    text-align: center;
    border-radius: 10px;
    position: relative;
    left: 30%;
}

.card::after, .card::before{
    content: '';
    position: absolute;
    height: 100%; width: 100%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -100;
    padding: 2px;
    border-radius: 10px;
    background-image: conic-gradient(from var(--angle), var(--highlight), transparent, var(--highlight), transparent, var(--highlight));
    animation: 7s animate linear infinite;
}

.card::before{
    filter: blur(1rem);
    opacity: 0.3; 

}

@keyframes animate{
    from{
        --angle:0deg;
    }
    to{
        --angle: 360deg
    }
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 390px;
    height: 440px;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px;
}

.login-form h1 {
    margin: 0 0 30px;
    color: var(--highlight);
    text-align: center;
}

.login-form .user-input{
    position: relative;
}

.login-form .user-input .user{
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    outline: none;
}

.login-form .user-input i{
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 20px;
    color: #ccc;
}

.login-form .user-input label{
    position: absolute;
    top: -29%;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #ccc;
    pointer-events: none;
    transition: .5s ease;
}

.login-form .user-input .user:focus ~ label
.login-form .user-input .user:valid ~ label{
    top: -15px;
    left: 0;
    font-size: 13px;
}

.login-form form .send{
    margin: 0 auto;
    display: inline-block;
    position: relative;
    padding: 10px 125px;
    color: black;
    font-size: 16px;
    background-color: var(--highlight);
    border-radius: 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    margin-top: 50px;
    border: 2px solid var(--highlight);
    transition: 0.5 ease;
}

.login-form form .send:hover{
    background-color: transparent;
    color: #ccc;
}

.remember-forget{
    color: #ccc;
    font-size: 16px;
}

.forget{
    color: #ccc;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
}

.forget:hover{
    text-decoration: underline;
}

.register{
    margin: 20px;
    color: #ccc;
    text-align: center;
    font-size: 16px;
}
.register-text{
    font-weight: bold;
    color: #ccc;
    text-decoration: none;
}
 .register-text:hover{
    text-decoration: underline;
 }
