body {
    font-family: Arial, sans-serif;
    background-color: #01011300;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

/* Input field styling */
input[type="text"],
input[type="submit"],
input[type="password"],
input[type="tel"],
button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button Styling */
button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

/* Error Message Styling */
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
.login{
    border-radius: 2%;
    border: 2px solid black;
    padding: 14px;
}
