body{
    font-family: 'Courier New', Courier, monospace;
    background-color:#b27ca6;
}

ul{
    list-style-type: none;
    margin: 0;
    padding:0;
    overflow: hidden;
    background-color: #fff;
}

li{
    float: left;
}

li a{
display: block;
color: #b27ca6;
text-align: center;
padding: 20px;
text-decoration: none;
}

li a:hover{
background-color:#b27ca6;
color: #fff;
}

li a:visited{
    background-color:#fff;
    color: #b27ca6;
    }

li a:active{
    background-color:#fff;
    color: #b27ca6;
    }

    .form-wrapper{
        background-color: #fff;
        max-width: 1200px;
        margin: 50px;
        padding: 10px 20px;
        }

        form {
            background: white;
            padding: 30px;
        }
        .form-group {
            margin-bottom: 20px;
            padding: 0;
            box-sizing: border-box;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #b27ca6;
        }
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 2px solid #e0d5f9;
            border-radius: 6px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #b27ca6;
            box-shadow: 0 0 5px rgba(138, 107, 193, 0.2);
        }
        textarea {
            height: 100px;
            resize: vertical;
        }

        button[type="submit"] {
            background: linear-gradient(135deg, #b27ca6 0%, #61425a 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }
        button[type="submit"]:hover {
            background: linear-gradient(135deg, #b27ca6 0%, #6d4b65 100%);
            transform: translateY(-2px);
            box-shadow: 0 2px 6px rgba(178, 124, 166, 0.3);
        }