body {
  font-family: arial, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding:  70px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width:300px;
  
}

.logo-wrapper{
text-align : center;
}

.logo-img{
max-width: 95px;
height:auto;
margin:0 auto ;
}


@media (max-width: 480px) {
  .login-container {
    width: 90%; /* or 100% with some padding/margin */
    padding: 40px 20px; /* reduce padding for small screens */
  }
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #34495e;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.login-container input[type="email"],
.login-container input[type="password"],
.login-container input[type="text"]
{
  width : 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  
}

.login-container input[type="submit"] {
  width: 100px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  align-items: center;
  
}

.login-container button[type="submit"] {
  width: 100px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  align-items: center;
  
}


.login-container input[type="submit"]:hover {
    background-color: #0056b3 ;
}

.form-group{
    margin-bottom: 20px;
    
     
    
}

.button-wrapper{
    display: flex;
    justify-content: center;
    text-align: center;
}

.register-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.register-line p {
    margin: 0;
    font-size: 16px;
}

.register-button {
    padding: 8px 15px;
    text-decoration: none;
    border: black;
    border-radius: 5px;
    font-size: 14px;
}

        button {
            padding: 10px;
            width: 100%;
            background: #007BFF;
            border: none;
            color: white;
            font-weight: bold;
        }
        .message {
            text-align: center;
            padding: 10px;
        }
        .error {
            color: red;
        }
        .success {
            color: green;
        }

.message.success {
    padding: 10px;
    border: 1px solid green;
    background-color: #e7ffe7;
    color: green;
    border-radius: 5px;
    margin-bottom: 15px;
}

