
/* General styles for the box */
.content-box {
    background-color: white; /* White background for the box */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Spacing inside the box */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 400px; /* Limit width */
    margin: 50px 15px; /* Center the box horizontally and add vertical spacing */
    border: 1px solid #ddd; /* Optional border for definition */
}

/* Style for the inputs */
input[type="email"],
input[type="password"],
input[type="submit"] {
    display: block;
    width: 100%; /* Full width inputs */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners for inputs */
    box-sizing: border-box;
}

/* Style for the links */
a {
    color: #007BFF;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Style for the submit button */
input[type="submit"] {
    background-color: #007BFF; /* Button background color */
    color: white; /* Button text color */
    border: none;
    cursor: pointer;
}

    input[type="submit"]:hover {
        background-color: #0056b3; /* Darker shade on hover */
    }

/* Additional spacing for the link next to the button */
.form-link {
    margin-left: 10px;
}

