body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('harley.jpg');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: rgb(113, 14, 113);
}

.container {
    perspective: 1000px;
}
.flip-card {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}
.flip-card-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.flip-card-front,
.flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    color: #333;
}
.flip-card-back {
    transform: rotateY(180deg);
}
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    padding: 10px;
    font-size: 1rem;
    background-color: #ff9ef5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
button:hover {
    background-color: #ff51ff;
}
.toggle-text {
    margin-top: 10px;
    color: #ff00d4;
    cursor: pointer;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.password-toggle i {
    font-size: 1rem;
}
.password-visible i.fa-eye-slash {
    display: none;
}
