.title { grid-area: title; }
.form { grid-area: form; }
.content { grid-area: content; }

/* .title { background-color: blueviolet; }
.form { background-color: yellow; }
.content { background-color: black; } */


.home-grid-container {
  display: grid;
  grid-template-areas:
    'title'
    'form'
    'content';
  gap: 10px;
}

.form {
  display: table;
  margin: 0;
}

#url_original {
  display: table-cell;
  width: 100%;
  height: 56px;
  padding: 10px 16px;
  font: 17px lato,arial;
  border: 1px solid #bbb;
  border-right: 0;
  border-radius: 3px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  box-sizing: border-box;
}

.url_submit {
  display: table-cell;
  box-sizing: border-box;
  vertical-align: middle;

}

.url_submit > input[type=submit] {
  width: 100%;
  height: 100%;
  background: #3b68cc;
  font-weight: bold;
  color: white;
}


.url_original { grid-area: url_original; }
form > input[type=submit] { grid-area: url_submit; }



.form-structure {
  display: grid;
  padding: 20px;
  grid-template-areas: 'url_original url_original url_original url_submit';
}
/* Redesigned with Tailwind - old layout styles removed */
/* Redesigned with Tailwind - old theme styles removed */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *




 *
 */
