* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Console', Monaco, monospace;
}

body {
    background-color:#27181d;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
    background-color: rgba(89, 60, 70, 0.8);
    border-radius: 10px;
    box-shadow: #f4b9d9 0px 0px 100px;
}

h1 {
    font-size: 2.5rem;
    color: #FD30a1;
    margin-bottom: 1.5rem;
}

p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lucida Console', Monaco, monospace;
}

.btn-primary {
    background-color: #FD30a1;
    color: white;
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: #FD30a1;
    border: 1px solid #FD30a1;
}

.btn-primary:hover {
    background-color: #e41e8d;
    box-shadow: #f4b9d9 0px 0px 100px;
}

.btn-secondary:hover {
    background-color: rgba(253, 48, 161, 0.1);
    box-shadow: #f4b9d9 0px 0px 100px;
}

.user-controls {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(89, 60, 70, 0.8);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: #f4b9d9 0px 0px 100px;
    text-align: center;
}

.user-controls .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FD30a1;
}

.user-controls .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.user-controls .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #FD30a1;
}

.user-controls .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.user-controls .password-container {
    position: relative;
}

.user-controls .password-container .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.user-controls .forgot-password {
    margin: 10px 0;
    font-size: 12px;
}

.user-controls .forgot-password a {
    color: #FD30a1;
    text-decoration: none;
}

.user-controls .forgot-password a:hover {
    text-decoration: underline;
}

.user-controls .submit-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #4e1132;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.user-controls .submit-button:hover {
    background-color: #e41e8d;
}

.user-controls .button-container {
    margin-top: 15px;
}

.user-controls .small-button {
    padding: 8px 12px;
    font-size: 14px;
    color: #FD30a1;
    background-color: transparent;
    border: 1px solid #FD30a1;
    border-radius: 4px;
    cursor: pointer;
}

.user-controls .small-button:hover {
    background-color: #FD30a1;
    color: #fff;
}

.form-message-box {
    display: none; 
    padding: 10px 15px;
    margin-bottom: 20px; 
    border-radius: 5px;
    font-size: 0.9em;
    text-align: center;
    word-wrap: break-word; 
    white-space: pre-wrap; 
}

.form-message-box.error {
    background-color: #ffe0e0;
    color: #cc0000;
    border: 1px solid #ff9999; 
}

.form-message-box.success {
    background-color: #e0ffe0;
    color: #008000; 
    border: 1px solid #99ff99; 
}
.middle-box {
    text-align: center;
    margin-top: 20px;
    font-family: "Lucida Console", Monaco, monospace; 
}
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(253, 48, 161, 0.3);
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(10px, 40px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
}