/* style.css */
    body, html {
      height: 100%;
      margin: 0;
    }
    
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: url('/assets/sms-bg.jpg');
      background-repeat: repeat;
      background-size: 600px 600px;
      opacity: 0.1;
      z-index: -1;
    }
    
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      min-height: 100vh;
    }
    
    .logo {
      max-width: 100px;
      height: auto;
    }
    
    .form-box {
      background: rgba(255, 255, 255, 0.95);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 400px;
    }
    
    .iti {
    position: relative;
    display: inline-block;
    width: 100% !important;
    }
    
    .iti input {
      width: 100% !important;
      box-sizing: border-box;
    }