* {
    padding: 0;
    margin: 0;
}

html {
    font-size: 10px;
    font-family: 'Open sans', sans-serif;
}

body {
    color: whitesmoke;
    background: url("../img/m-89724.jpeg") center/cover no-repeat;
    min-height: 130vh;
    position: relative;
}

p {
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
    line-height: 25px;
}

form p {
    text-align: left;
    /* padding-top: 0px; */
}

#all {
    position: relative;
    /* height: 130vh; */
    width: 100%;
}

/* h1 {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 30px;
} */

.przeslona {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;
}

form {
    padding: 3rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 50%;
}

@media screen and (max-width: 700px) {
    form {
        width: 80%;
    }
}

form input, form textarea, form button, form select {
    width: 100%;
    border: 1px solid whitesmoke;
    border-radius: 0.5rem;
    display: block;
    padding: 1.4rem;
    background-color: transparent;
    color: whitesmoke;
    font-size: 1.4rem;
    transition: all 1s;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/* form select {
    background-color: lightgray;
} */

form input:focus, form textarea:focus {
    background-color: rgba(0, 0, 0, .3);
    outline: 0;
}

form select:focus {
    background-color: rgba(0, 0, 0, .7);
}

.alert {
    width: 40%;
    padding: .6rem;
    border-radius: .4rem;
}

@media screen and (max-width: 700px) {
    .alert {
        width: 80%;
    }
}

.alert-danger {
    background-color: rgba(227, 48, 48, 0.6);
}

.alert-success {
    position: fixed;
    top: 30%;
    width: 95%;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1.6rem;
    font-size: 1.6rem;
    background-color: rgba(2, 46, 2, 0.8);
}

@media screen and (max-width: 700px) {
    .alert-success {
        font-size: 28px;
    }
}

label {
    display: block;
    font-size: 1.4rem;
}

form textarea {
    font-family: inherit;
    resize: none;
}

form button {
    margin-bottom: 3rem;
    outline: 0;
    width: 40%;
}

form button:hover {
    background-color: rgba(245, 245, 245, 0.2);
}

form .g-recaptcha {
    margin-top: 2rem;
    margin-bottom:2rem;
}