﻿
/* The popup chat - hidden by default */
.form-popup {
  max-width: 24rem;
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 100;
  box-shadow: 0px 4px 16px rgba(17,17,26,0.1), 0px 8px 24px rgba(17,17,26,0.1), 0px 16px 56px rgba(17,17,26,0.1);
  margin: 1rem;
}

/* Add styles to the form container */
.form-container {
  padding: 20px;
  background-color: white;
}

/* When the textarea gets focus, do something */
.form-container .text {
  margin-bottom:10px;
}

.form-container .text a{
  color: #d50032;
  text-decoration: inherit;
}

.form-container h2 {
  margin-top:0px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #fff;
  color: #d50032;
  border: 2px solid #d50032;
  padding: 6px 20px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 5px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #fff;
  color: #000;
}

/* Add some hover effects to buttons */
.form-container .btn:hover {
  background-color: #d50032;
  color: white;
}

.form-icon {
	display: inline;
    width: 1.25rem;
    vertical-align: middle;
    margin-right: 15px;
}