body {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: silver;
    border: 3px solid black;
    width: 700px;
    margin: auto;
}

p {
    color: black;

}
fieldset {
    text-align: left;
}


    hr {
  border: none;          
  height: 3px;           
  background-color: darkgrey; 
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px black;
    max-width: 400px;
    margin: auto;
    font-family: Arial, sans-serif;
}

h1{
    text-align: center;
    color:#2c5364;
}

button {
    background: #2c5364;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
}

button:hover {
    background: #1a2b3c
}


