* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(Backgroind.png);
  background-position: center;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 700px;
  height: auto;
  margin-bottom: 5px;
}

.btn {
  width: 260px;
  padding: 14px 0;
  font-size: 17px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.signin {
  background: rgb(135, 123, 123);
  color: white;
  border: 2px solid rgb(0, 0, 0);
}

.create-account {
  background-color: #3b52d1;
  color: white;
  border: none;
  margin-bottom: 40px;
  border: 2px solid rgb(0, 0, 0);
}

.create-account:hover {
  background-color: #2f45c1;
  border-color: black;
}

.signin:hover {
  border-color: rgb(0, 0, 0);
  background-color:rgb(107, 94, 94);
}
