main {
    padding: 20px;
    text-align: center;
}

form {
    width: 400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    color: blue;
    padding: 5px 10px;
    border-radius: 3px; 
    font-weight: bold; 
    margin-bottom: 20px;
    font-size: 1.5em;
}


label {
    display: inline-block; 
    width: 100px;
    text-align: left;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    display: inline-block;
    width: calc(100% - 110px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #ffcc00; 
    color: #333;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ffdb4d; 
}

.options {
    margin-top: 20px;
    text-align: center;
}

.options p {
    margin-bottom: 10px;
}

.options a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.options a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

body{
    background-size: cover;
}