*{
   margin:0;
   padding:0;
   box-sizing:border-box;
}

body{
   font-family:Arial, sans-serif;
   background:#ffffff;
}

.container{
   display:flex;
   /*min-height:80vh;*/
}

/* LADO ESQUERDO */
.left{
   width:45%;
   /*background:linear-gradient(135deg,#eef4e8,#ffffff,#dfe9d7);*/
   background: url('background.jpg');
   display:flex;
   flex-direction:column;
   justify-content:center;
   align-items:center;
   padding:0px;
   text-align:center;
}

.logo{
   width:50%;
   margin-bottom:0px;
}

.kit{
   width:70%;
   margin-bottom:0px;
}

.what_inst{
   width:25px;
   vertical-align: middle;
}

.left h2{
   color:#8aba2d;
   font-size:40px;
   margin-bottom:0px;
}

.contact{
   font-size:20px;
   color:#222;
   line-height:2;
}

/* LADO DIREITO */
.right{
   width:55%;
   background:linear-gradient(135deg,#4c35c8,#402db2);
   color:white;
   padding:20px;
   display:flex;
   justify-content:center;
   align-items:center;
}

.form-box{
   width:100%;
   max-width:550px;
}

.form-box h1{
   font-size:42px;
   line-height:1.4;
   margin-bottom:35px;
}

label{
   display:block;
   font-size:28px;
   margin:18px 0 10px;
}

input, textarea{
   width:100%;
   border:none;
   border-radius:20px;
   padding:18px 25px;
   font-size:22px;
   outline:none;
}

textarea{
   border-radius:25px;
   height:180px;
   resize:none;
}

button{
   width:100%;
   margin-top:30px;
   padding:18px;
   border:none;
   border-radius:30px;
   background:#d3f1bf;
   color:#1e2d8f;
   font-size:34px;
   font-weight:bold;
   cursor:pointer;
   transition:0.3s;
}

button:hover{
   transform:scale(1.05);
   background:#97b737;
   color:white;
}

button:active{
   transform:scale(1.0);
}

input#nome {
   text-transform: uppercase;
}

/* RESPONSIVO */
@media(max-width:900px){

   .container{
      flex-direction:column;
   }

   .left,.right{
      width:100%;
   }

   .left h2{
      font-size:40px;
   }

   .form-box h1{
      font-size:30px;
   }

   label{
      font-size:22px;
   }

   button{
      font-size:26px;
   }
}

/* Estilos do Modal */
.modal {
   display: none;
   position: fixed;
   z-index: 1;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   /* overflow: auto; */
   background-color: rgba(0,0,0,0.7);
   animation: fadeIn 0.3s;
}

@keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
}

.modal-content {
   position: relative;
   background-color: #fff;
   margin: 15% auto;
   padding: 0;
   width: 90%;
   max-width: 400px;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0,0,0,0.3);
   animation: slideIn 0.3s;
}

@keyframes slideIn {
   from {
      transform: translateY(-50px);
      opacity: 0;
   }
   to {
      transform: translateY(0);
      opacity: 1;
   }
}

.modal-header {
   padding: 20px;
   border-radius: 10px 10px 0 0;
   color: white;
   font-size: 20px;
   font-weight: bold;
}

.modal-header.success {
   background-color: #4CAF50;
}

.modal-header.error {
   background-color: #f44336;
}

.modal-header.warning {
   background-color: #ff9800;
}

.modal-header.info {
   background-color: #2196F3;
}

.modal-body {
   padding: 20px;
   font-size: 16px;
   text-align: center;
   color: #333;
   line-height: 1.5;
}

.modal-footer {
   padding: 15px 20px;
   text-align: center;
   border-top: 1px solid #eee;
}

.modal-footer button {
   background-color: #4CAF50;
   color: white;
   border: none;
   padding: 10px 20px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 14px;
   transition: 0.3s;
}

.modal-footer button:hover {
   background-color: #45a049;
   transform: scale(1.05);
}

.close {
   position: absolute;
   right: 15px;
   top: 15px;
   color: white;
   font-size: 28px;
   font-weight: bold;
   cursor: pointer;
   transition: 0.3s;
}

.close:hover {
   transform: scale(1.2);
}