/* Centering the login container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f5f7;
  }
  
  /* Login Box Styling */
  .login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
  }
  
  /* Slack-like Logo/Icon */
  .logo {
    font-size: 50px;
    color: #0350b6;
    margin-bottom: 10px;
  }
  
  /* Headline Styling */
  h2 {
    color: #0553c0;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Input Field Styling */
  .input-field {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .input-box {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Login Button */
  .btn-login {
    width: 100%;
    background-color: #0350b6; 
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .btn-login:hover {
    background-color: #033a87;
  }
  
  /* Signup Link */
  .signup-link {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .signup-btn {
    background-color: #0350b6; 
    font-weight: bold;
    text-decoration: none;
  }
  
  .signup-btn:hover {
    text-decoration: underline;
  }
  
   /*  Subtitle Styling */
   .subtitle {
    font-size: 16px;
    font-weight: normal;
    color: white;
  }
  
  /* Title Styling */
  .title {
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
  }