@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to right, #0dcaf0, #0d6efd);
  color: #333;
}

.container {
    margin: 0.15px;
}

.form-box {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}
.form-box.active {
    display: block;
}

.form-box2{
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
}


h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 12px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.5s ease;
}

button:hover {
    background: #0b5ed7;
}

p {
    text-align: center;
    font-size: 14.5px;
    margin-bottom: 10px;
    color: #666;
}

p a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.5s ease;
}

p a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.error-message {
    padding: 12px;
    background: #f8d7da;
    border-radius: 6px;
    text-align: center;
    color: red;
    font-size: 16px;
    margin-bottom: 20px;
}