@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: #1d1c1c;
    display: grid;
    place-content: center;
    min-height: 100vh;
}
h1{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.form{
    display: grid;
    place-content: center;
}
.form div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    
}
.form div input{
    width: 300px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 18px;
    background: #1d1c1c;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}
.form div textarea{
    width: 300px;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    background: #1d1c1c;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.form div input:focus , .form div textarea:focus{
    border: 2px solid #42e73c;
}

.form div button{
    width: 300px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 18px;
    background: #42e73c;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form div button:hover{
    background: #fff;
    color: #42e73c;
}
