/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f111a; /* Deep dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Glassmorphism Container */
.form_container {
    background: #161b2e;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form_container h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Input Styling */
.form_container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    background: #0f111a;
    border: 1px solid #2e344e;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: 0.3s;
}

.form_container input:focus {
    border-color: #6c5ce7; /* Purple accent */
    box-shadow: 0 0 8px rgba(108, 92, 231, 0.3);
}

/* Button Styling */
.form_container button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s, opacity 0.2s;
}

.form_container button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Error/Success Messages */
.error_message, .success_message {
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.error_message {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid #ff4757;
}

.success_message {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid #2ed573;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .form_container {
        padding: 25px;
    }
}