* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #021024;
    font-family: 'Rubik', sans-serif;
    min-height: 100vh;
    color: #C1E8FF;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  
  .container {
    background: #052659;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
  }
  
  .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #C1E8FF;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .form-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-container input,
  .form-container button {
    padding: 0.6rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .form-container input {
    outline: none;
  }
  
  .form-container button {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .form-container button:hover {
    background-color: #45a049;
  }
  
  p {
    font-size: 13px;
    font-weight: 300;
  }


  .links-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 1.5rem;
  }
  
  .icons-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 22px;
    padding-top: 4px;
  }
  
  .icons-col i {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .buttons-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .buttons-col a {
    background: #548383;
    color: #fff;
    padding: 0.75rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    min-width: 180px;
    text-align: center;
  }
  
  .buttons-col a:hover {
    background: #7DA0CA;
  }
  

  /* Footer */
.footer {
    margin-top: 10rem;
    text-align: center;
    font-size: 14px;
    color: #C1E8FF;
    opacity: 0.8;
}

.footer a {
    color: #C1E8FF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #7DA0CA;
}