
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.container b {
    font-size: 24px;
    color: #333;
}

.container p {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

form input[type="text"],
form input[type="tel"],
form input[type="password"],
form input[type="file"],
form input[type="email"] {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
form input[type="submit"],
form input[type="reset"] {
    width: 100%;
    padding: 10px;
    background-color: #0060d6;
    color: rgb(255, 254, 254);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

form input[type="reset"] {
    background-color: #0060d6;
}

form input[type="submit"]:hover,
form input[type="reset"]:hover {
    opacity: 0.9;
}

/* Link Styling */
form a {
    color: #007bff;
    text-decoration: none;
    margin-top: 10px;
}

form a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
    .container {
        padding: 15px;
        max-width: 90%;
    }

    form input {
        font-size: 14px;
    }

    .container b {
        font-size: 20px;
    }

    .container p {
        font-size: 16px;
    }
}
