/* General form styling */
form {
    /*max-width: 400px;*/
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(78, 133, 178, 1);
    border-radius: 5px;
    background-color: rgba(27, 36, 50, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Form headings */
form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: rgba(237, 237, 237, 1);
}

/* Form groups (labels and inputs) */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: rgba(156, 195, 232, 1);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(78, 133, 178, 1);
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgba(10, 15, 31, 1);
    color: rgba(237, 237, 237, 1);
}

input[type="text"]:disabled {
    width: 100%;
    padding: 10px;
    border: 0px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgba(27, 36, 50, 0.9);
    color: rgba(237, 237, 237, 1);
}

/* Button styling */
button,
input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: rgba(123, 97, 255, 1);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background-color: rgba(163, 113, 201, 1);
}

/* Error message styling */
.error {
    color: rgba(217, 83, 79, 1);
    background-color: rgba(255, 229, 229, 1);
    padding: 10px;
    border: 1px solid rgba(217, 83, 79, 1);
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

/* Success message styling */
.success {
    color: rgba(40, 167, 69, 1);
    background-color: rgba(229, 247, 235, 1);
    padding: 10px;
    border: 1px solid rgba(40, 167, 69, 1);
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

/* Placeholder text */
input::placeholder {
    color: rgba(170, 170, 170, 1);
}

/* Links inside forms */
.form-links {
    text-align: center;
    margin-top: 15px;
}

.form-links a {
    color: rgba(156, 195, 232, 1);
    text-decoration: none;
    font-weight: bold;
}

.form-links a:hover {
    text-decoration: underline;
    color: rgba(255, 215, 0, 1);
}

.parse-logout-container {
    /*max-width: 400px;*/
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(78, 133, 178, 1);
    border-radius: 5px;
    background-color: rgba(27, 36, 50, 0.9);
    text-align: center;
}

.parse-logout-container h2 {
    margin-bottom: 20px;
    color: rgba(237, 237, 237, 1);
}
