.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.login-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 400px;
  font-family: 'Quicksand', Arial, sans-serif;
  box-sizing: border-box;
}

.login-form h2 {
  text-align: center;
  color: #1976d2;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.login-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.login-form input:focus {
  border-color: #1976d2;
}

.login-form button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form button:hover {
  background: #125299;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
}

.btn-outline {
  background: transparent !important;
  color: #1976d2 !important;
  border: 2px solid #1976d2 !important;
}

.btn-outline:hover {
  background: rgba(25, 118, 210, 0.05) !important;
}

.btn-whatsapp {
  background: #25D366 !important;
}

.btn-whatsapp:hover {
  background: #1eb954 !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
}

.error-message {
  color: #d32f2f;
  text-align: center;
  font-size: 0.9rem;
  background: #ffebee;
  padding: 8px;
  border-radius: 8px;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 10px;
    align-items: center;
  }

  .login-form {
    padding: 1.5rem 1.2rem;
    width: 94%;
    max-width: 100%;
    gap: 1rem;
  }
}

html,body{width:100%;max-width:100%;margin:0;padding:0;overflow-x:hidden;-webkit-text-size-adjust:100%;text-size-adjust:100%}
*,:before,:after{box-sizing:border-box}
img,video,canvas,svg,iframe{max-width:100%;height:auto;display:block}
table{width:100%;max-width:100%;border-collapse:collapse;table-layout:fixed}
pre,code{max-width:100%;overflow:auto;word-break:break-word;white-space:pre-wrap}
input,select,textarea,button{max-width:100%}
.container,section,header,footer,main,div{max-width:100%}
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

@media (max-width:768px){
  body{overflow-x:hidden}
  .wrap,.container,.container-fluid{width:100%;max-width:100%;padding-left:16px;padding-right:16px;margin-left:auto;margin-right:auto}
  .row{display:flex;flex-wrap:wrap;margin-left:-8px;margin-right:-8px}
  .col,[class*="col-"]{width:100%;max-width:100%;flex:0 0 100%;padding-left:8px;padding-right:8px}
  h1{font-size:24px;line-height:1.2}
  h2{font-size:20px;line-height:1.25}
  h3{font-size:18px;line-height:1.3}
  p,li{font-size:16px;line-height:1.5}
  .fixed, .sticky{position:static !important}
  .modal,.dropdown-menu,.popover{max-width:100vw}
  .scroll-x{overflow-x:auto;-webkit-overflow-scrolling:touch}
}
html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

*,
:before,
:after {
  box-sizing: border-box
}

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed
}

pre,
code {
  max-width: 100%;
  overflow: auto;
  word-break: break-word;
  white-space: pre-wrap
}

input,
select,
textarea,
button {
  max-width: 100%
}

.container,
section,
header,
footer,
main,
div {
  max-width: 100%
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (max-width:768px) {
  body {
    overflow-x: hidden
  }

  .wrap,
  .container,
  .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px
  }

  .col,
  [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 8px;
    padding-right: 8px
  }

  h1 {
    font-size: 24px;
    line-height: 1.2
  }

  h2 {
    font-size: 20px;
    line-height: 1.25
  }

  h3 {
    font-size: 18px;
    line-height: 1.3
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.5
  }

  .fixed,
  .sticky {
    position: static !important
  }

  .modal,
  .dropdown-menu,
  .popover {
    max-width: 100vw
  }

  .scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}