/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Container styling */
.container {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Icon styling */
.icon i {
    font-size: 80px;
    color: #007BFF; /* Blue color for main icon */
    margin-bottom: 15px;
}

/* Form heading */
h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Form group styling */
.form-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.form-group i {
    font-size: 18px;
    color: #007BFF; /* Blue color for form icons */
    margin-right: 10px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #555;
    background-color: transparent;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Link styling */
p {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

p a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

p a:hover {
    color: #0056b3;
}
