* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #F5F9FF;
  color: #1A1918;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
}

/* MAIN CARD */
.container {
  width: 100%;
  max-width: 420px;

  background: white;
  padding: 25px;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

/* LOGO */
.logo {
  margin-bottom: 10px;
  text-align: center;
}

.logo-main {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #111;
}

.logo-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  color: #4DA3FF;
  margin-top: -5px;
}

/* HEADINGS */
h1 {
  font-size: 20px;
  margin: 10px 0;
}

h2 {
  font-size: 16px;
  margin: 10px 0;
}

/* LABELS */
label {
  display: block;
  text-align: left;
  margin-top: 12px;
  font-size: 13px;
}

/* INPUTS */
input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;

  border: 1px solid #D9E2EC;
  border-radius: 8px;

  font-size: 14px;
}

/* BUTTONS */
button {
  width: 100%;
  padding: 12px;

  margin-top: 15px;

  background: #4DA3FF;
  color: white;

  border: none;
  border-radius: 8px;

  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #2F8CFF;
}

/* SECONDARY BUTTON */
.secondary {
  background: white;
  color: #4DA3FF;
  border: 1px solid #4DA3FF;
}

/* LANGUAGE SELECT */
select {
  width: 100%;
  padding: 8px;

  margin-bottom: 15px;

  border-radius: 8px;
  border: 1px solid #D9E2EC;

  font-size: 14px;
}

/* HORIZONTAL LINE */
hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #eee;
}