/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #0099cc; /* Warna biru untuk background */
  color: white; /* Warna teks putih */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
}

/* Styling for the Welcome Text */
.welcome-container h1 {
  font-size: 40px; /* Ukuran teks untuk Welcome To */
  margin-bottom: 20px;
  color: white; /* Warna teks putih */
}

/* Styling for the logo image */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

/* Styling for the logo image */
.logo-container .logo {
  width: 250px; /* Menentukan ukuran logo yang lebih besar */
  height: auto;
  border-radius: 20px;
  border: 2px solid black; /* Menambahkan border hitam tipis pada logo */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for the Login button */
.welcome-container .login-btn {
  display: inline-block;
  padding: 15px 60px;
  background-color: white;
  color: black;
  text-decoration: none;
  font-size: 20px;
  border-radius: 20px;
  text-align: center;
  margin-top: 20px;
  border: 2px solid black;
}

/* Hover effect for the Login button */
.welcome-container .login-btn:hover {
  background-color: #333;
}
