
/*

FORMULÄR

https://contactform7.com/styling-contact-form/
*/

.wpcf7 {
    
}

.wpcf7 lable {
    padding-top:1em;
    
}

.wpcf7 label span.description-required {
    font-size: 75%;
    opacity: 0.8;
}


input,
select,
input[type="text"],
input[type="email"],
textarea
{
    box-sizing: border-box;
    color: #000;
    background-color: #fafafa;
    border: 1px solid #a9a9a9;
    width: 100%;
    height: auto;
    padding: 10px;
    position: relative;
    font-size: 100%;
    font-weight: 500;
}

.wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
}

/* Form button */
input [type="submit"] { 
    /*width: 100%;*/
    border-radius: 100%;
}

.wpcf7 input [type="checkbox"], input[type="checkbox" i] {
    width: auto;
}

input.wpcf7-form-control.wpcf7-submit {
    width: auto;
    background-color: #4f0433;
    border-width: 0;
    color: white;
    font-family: inherit;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: inherit;
    padding-top: 0.8rem;
    padding-right: 1.6rem;
    padding-bottom: 0.8rem;
    padding-left: 1.6rem;
    text-decoration: none;
    border-radius: 3px;
}



input.wpcf7-form-control.wpcf7-submit:hover{
    background-color: color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent);
    border-color: transparent;
    color: #ffffff;
    animation: pulse;
    animation-duration: 0.5s;
}
}

/*
span.wpcf7-list-item {
    width: 100%;
}
*/

/*
    Styling response messages   
*/
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
 
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
}
 
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
}
 
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
}
 
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
}
