body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.flash-msg-container {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    font-family: 'Arial', sans-serif;
}

.flash-msg-item {
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
    font-size: 14px;
}

.flash-msg-item.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-msg-item.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-msg-item.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.flash-msg-item.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

form p {
    margin-bottom: 20px;
    position: relative;
}

form p:last-child {
    margin-bottom: 0;
}

form label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #333333;
}

form input[type="text"],
form input[type="number"],
form input[type="email"],
form input[type="password"],
form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

form input[size] {
    width: 100%;
}

form input[type="submit"] {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

form p br:first-of-type {
    display: none;
}

form p br {
    display: none;
}

@media (max-width: 480px) {
    form {
        padding: 20px;
    }

    form input[type="submit"] {
        font-size: 16px;
    }
}