.content {
    display: flex;
    flex-direction: column;
    height: 70vh;
    padding: 20px;
    max-width: 800px;
    margin: 70px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
   
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #2A58F1;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add responsive padding for mobile screens */
@media screen and (max-width: 426px) {
    .content {
        height: auto;
        padding: 20px;
        margin: 70px 15px;
        width: auto;
    }
    
    form {
        padding: 0 5px;
    }
    
    input[type="text"],
    input[type="password"] {
        width: 100%;
        box-sizing: border-box;
    }
    
    button {
        width: 100%;
    }
}
