/* login.css */

body {
    background-image: url('https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", sans-serif;
  }
  
  .login-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  .login-box h4 {
    color: #ff5722;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .login-box p.subtext {
    color: #0d6efd;
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .form-control {
    border-radius: 10px;
  }
  
  .btn-login {
    background-color: #0d6efd;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
  }
  
  .btn-login:hover {
    background-color: #0b5ed7;
  }
  
  .btn-register {
    margin-top: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
  }
  