 /* Сброс стилей */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    /* background-color: #f9f9f9; */
    background-color:#d3efef;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
  }

  .registration-container {
    background-color: #fff;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .logo-block {
    border-bottom:1px solid #ff8f31; 
  }

  .logo-project {
    margin-top:0px;
    margin-left:0px;
    margin-bottom:-4px;
    width: 100%;
    height: 200px;
    background: url("../media/umeysam.jpg"); 
    background-repeat:no-repeat;
    background-size:50%;    
  }

 .logo-title {
    border:0px solid red;
    text-align: right;
    padding:40px 40px 0px 200px;
    font-size:50px;
  }

  h1 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    text-align: center;
  }
  h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
  }

  label {
    display: block;
    margin-bottom: 0.3rem;
    color: #555;
    font-weight: 500;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus {
    border-color: #a84c00;
    outline: none;
  }

  button {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
   background-color: #fd7e14 ; 
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  button:hover,
  button:focus {
    background-color: #813a00;
  }


  /* Адаптивность */
  @media (max-width: 480px) {
    .registration-container {
      padding: 1rem;
      max-width: 90%;
    }
  }

  .word-doc {
    background: url("../media/word36x36.png");
    background-repeat:no-repeat;
    background-size:36px;
    padding-left:45px;
    margin-bottom:10px;
    display:block;
    word-wrap: break-word;
  }
  
  .word-doc a {
    text-decoration: none;
  }

  .word-doc a:hover {
    text-decoration: underline; 
  }

  .pdf-doc {
    background: url("../media/pdf36x36.png");
    background-repeat:no-repeat;
    background-size:36px;
    padding-left:45px;
    display:block;
    word-wrap: break-word;
  }
  
  .pdf-doc a {
    text-decoration: none;
  }

  .pdf-doc a:hover {
    text-decoration: underline; 
  }

  .link-doc {
    background: url("../media/Link36x36.png");
    background-repeat:no-repeat;
    background-size:36px;
    padding-left:45px;
    display:block;
    word-wrap: break-word;
    height:36px;
    margin-top:10px;
    padding-top:7px;
  }
  .link-doc a {
    text-decoration: none;
  }

  .link-doc a:hover {
    text-decoration: underline; 
  }