/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    background-color: #f4f4f4;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    margin: 0;*/
/*}*/

.login-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 500px;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    width: calc(100% - 12px); /* Adjusted to fit inside the form padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #be001c; /* Bootstrap success color */
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #ac021c; /* Darker shade for hover effect */
}
@media (max-width: 600px) {
    .login-container { width: 90%; } /* Adjust width for smaller screens */
}
.droppable {
    display: flex;
    align-items: center;
    gap: 10px;
}
