
nav{
    text-align: right;
    padding: 30px 50px 0 0;
}

nav > a{
    color:#fff;
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

nav > a:hover{
    text-decoration: underline;
}


* {
  padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
}


body {
    font-family: sans-serif;
    background: url(../img/about.jpg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}



form {
    padding: 50px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    width: 440px;
}

.input-group{
     display: flex;  
    flex-direction: column;
    text-align: left;
}

h2 {
    color: black;
    font-size: 35px;
}


label {
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    
    
    
}


input, textarea {
    padding: 17px 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    background-color: hsl(228, 4%, 27%, 0.6);
    border: 1px solid black;
    color:#fff;
    outline: none;
}


input::placeholder, textarea::placeholder {
    color: #b5cab6;
}

.form-txt {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.form-txt a {
    color: #76b276;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    
}

.btn {
    font-size: 16px;
    color: #fff;
    border: 0;
    border-radius: 25px;
    background-color: #000;
    box-shadow:0 0 20px #fff;
    cursor: pointer;
}

.btn:hover {
    background-color: cornflowerblue;
    
}


@media(max-width:991px){
    body{
        padding: 30px;
    }
    
    form{
        padding: 50px 30px;
        width: 100%;
        
    }
    input {
        padding: 15px 10px;
    }
}














