I have the following snippet:
shinyUI(fluidPage(
useShinyjs(),
div(
id = "login",
align="center",
textInput("text_login", "Enter your username", ""),
actionButton("btn_login", "Enter"),
hidden(verbatimTextOutput("value"))
),
# rest of the code
How can I position this div in the center of the page (both vertically and horizontally) and put it inside a rectangular outline, so that it stands out from the rest of the page?
Thank you in advance for your help.