* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #eee;
  padding: 20px;
}

form {
  max-width: 700px;
  margin: 0 auto 20px auto;
  padding: 20px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="date"] {
  padding: 10px;
  font-size: 15px;
}

form label {
  font-size: 14px;
}

button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.cv-page {
  width: 794px;
  height: 1122px;
  background: white;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  font-size: 15px; /* Slightly smaller base font size */
}

.left {
  width: 66.66%;
  padding: 32px 24px;
  border-right: 1px solid black;
}

.right {
  width: 33.33%;
  padding: 32px 18px;
}

.left h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.left p,
.right p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
}

h2 {
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 5px;
}

ul {
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14.5px;
  line-height: 1.4;
}

img.photo {
  display: block;
  width: 120px;
  height: 140px;
  border: 1px solid black;
  margin: 0 auto 10px;
  object-fit: cover;
}

.signature-block {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-size: 15px;
  text-align: right;
}

img.signature {
  max-height: 50px;
}
.screen {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.centered-box {
  max-width: 600px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.centered-box h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.centered-box ul {
  text-align: left;
  margin: 20px 0;
}

#startBtn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
