body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    height: 100vh;
    background-color: #f4f4f4;
    background-size: 100%;
} 

.main-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.main-header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.main-header h2 {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #777;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.3s;
}

.main-footer {
    margin-top: 20px;
}

.main-footer p {
    font-size: 14px;
    color: #777;
}

a {
    text-decoration: none;
}