.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    margin: 50px auto;
}
.form-group {
    position: relative;
    margin-bottom: 15px;
}
.form-group input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}
.form-group i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #aaa;
}
.form-container .button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.form-container .button:hover {
    background-color: #0056b3;
}
.form-footer {
    text-align: center;
    padding-top: 20px;
}