/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Background */
body {
  background: url('bg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo img {
  width: 60px;
  height: 60px;
}

/* Main container */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 80px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
}

/* Buttons */
.buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  margin: 10px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
  position: relative;
}

/* Hover Animation */
.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* 🔒 Prevent text selection */
body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* 🔒 Prevent copying text */
body::selection {
  background: transparent;
}

/* Optional: Prevent text cursor */
* {
  cursor: default;
}


/* http://localhost:8080/ielts_app/index.php */
