body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff, #00c6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 40%;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.error-msg {
    color: red;
    font-weight: bold;
    background: #f8d7da;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.container input:focus {
    border-color: #007bff;
    outline: none;
}

.container h3 {
    display: inline;
    position: relative;
    top: 20px;
    left: 0%;
    text-decoration: none;
}
.container h3 a {
    display: inline;
    position: relative;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
    transform: scale(1.05);
}
