* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fdecec;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card {
  background: #fff;
  width: 360px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}



.subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}



.tab {
  flex: 1;
  padding: 8px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 25px;
  font-size: 14px;
}

.tab.active {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form {
  text-align: left;
}

label {
  font-size: 13px;
  color: #555;
}

.input-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px;
  margin: 6px 0 15px;
}

.input-box i {
  color: #999;
  margin-right: 8px;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

.checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 15px;
}

.checkbox input {
  margin-right: 8px;
}

a.btn {
  width: 100%;
  padding: 6px 10px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
 font-weight:bold ;
  margin: 10px 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: darkred;
}