@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: local('Lato Light Italic'), local(Lato-LightItalic), url(../fonts/Lato-LightItalic.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local('Lato Italic'), local(Lato-Italic), url(../fonts/Lato-Italic.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: local('Lato Bold Italic'), local(Lato-BoldItalic), url(../fonts/Lato-BoldItalic.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: local('Lato Black Italic'), local(Lato-BlackItalic), url(../fonts/Lato-BlackItalic.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Lato Light'), local(Lato-Light), url(../fonts/Lato-Light.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Lato Regular'), local(Lato-Regular), url(../fonts/Lato-Regular.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Lato Bold'), local(Lato-Bold), url(../fonts/Lato-Bold.ttf);
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local('Lato Black'), local(Lato-Black), url(../fonts/Lato-Black.ttf);
}

.uship-page {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .uship-page * {
    box-sizing: border-box;
  }
  
  /* Header */
  .uship-header {
    padding: 20px 40px;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
  }
  
  .uship-logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .logo-u {
    color: #2b78c6;
  }
  
  .logo-s {
    color: #2b78c6;
  }
  
  .logo-hip {
    color: #2b78c6;
  }
  
  /* Main content area with gray background */
  .uship-main {
    flex: 1;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
  }
  
  .signin-card {
    width: 460px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 28px 32px 32px;
  }
  
  .signin-title {
    font-size: 22px;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
    margin: 0 0 14px 0;
  }
  
  .signin-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 0 0 20px 0;
  }
  
  .signin-join {
    font-size: 15px;
    color: #333333;
    margin: 0 0 20px 0;
  }
  
  .signin-link {
    color: #2b78c6;
    font-weight: 700;
    text-decoration: underline;
  }
  
  .signin-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
  }
  
  .signin-input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    font-size: 14px;
    color: #333333;
  }
  
  .signin-input:focus {
    outline: none;
    border-color: #2b78c6;
  }
  
  .signin-password-wrap {
    position: relative;
  }
  
  .signin-password-wrap .signin-input {
    padding-right: 40px;
  }
  
  .signin-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    cursor: pointer;
    font-size: 16px;
  }
  
  .signin-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333333;
    margin-bottom: 40px;
    cursor: pointer;
  }
  
  .signin-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .signin-btn {
    width: 100%;
    height: 48px;
    background: #2e8b2e;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 18px;
  }
  
  .signin-btn:hover {
    background: #267326;
  }
  
  .signin-forgot {
    display: block;
    font-size: 15px;
    color: #2b78c6;
    text-decoration: underline;
    font-weight: 700;
  }
  
  /* Footer */
  .uship-footer {
    padding: 20px 40px;
    border-top: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 13px;
    color: #666666;
  }
  
  .footer-copyright {
    margin: 0 0 8px 0;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #2b78c6;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }

  body {
    background-color: #f9f9f9;
  }