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

h1{
    text-align: center;
    margin-top: 20px;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 350px;
    margin-bottom: 20px;
    padding: 20px;
    border: solid 1px #333;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 10px;

}
input[type="text"]{
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
}

input[type="password"]{
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
}

button[type="submit"]{
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
}

button[type="submit"]:hover{
    background-color: #0056b3;
}
