.screen-content {
  width: 100%;
  max-width: 420px;
  margin: auto;
  padding: 0 16px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
}
.registertitle{
  font-size: 30px;
  margin: 0 0 10px;

}
.registerdescription{
  text-align: center;
  max-width: 340px;
  margin: 0;
  line-height: 1.45;
}
#loginScreen[style*="display:none"],
#registerScreen[style*="display:none"],
#homeScreen[style*="display:none"] {
  display: none !important;
}
.registericon {
  width: 120px;
  height: 120px;
}
.light-mode .registericon {
  filter: invert(1) hue-rotate(200deg) saturate(1.2);
}
 
 .registerplaceholder {
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  border: none;
  outline: none;
  margin-bottom: 10px;
  border-radius: 40px;
  font-size: 16px;
}
#loginBtn,#weiterBtn, .google-btn{
  width: 100%;
  height: 55px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.verify-text {
  font-size: 18px;
}

.verify-email {
  font-size: 20px;
  color: #ea1e1e;
  font-weight: bold;

}

#loginForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#profileForm{
  gap: 10px;
  width: 100%;
  display: flex;          
  flex-direction: column; 
  margin-top: 30px;
  
}

.login-subtitle {
  font-size: 28px;
  margin: 0 0 20px 0;   
  font-weight: 550;      
  opacity: 0.8;         
  text-align: center;    
  display: block;        
}

.consent-agreement {
  display: flex;
  border-radius: 40px;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.agreement-text {
  font-size: 16px;
  line-height: 1.4;
  flex: 1;
  padding-right: 10px;
}

.agreement-text .legal-link {
  text-decoration: none;
  font-weight: 500;
}

.agreement-text .legal-link:hover {
  text-decoration: underline;
}

.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff0000;
  border-radius: 24px;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:checked + .slider::before {
  transform: translateX(27px);
}


#point {
  position: fixed;
  top: 8px;
  left: 18px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}
#profContent {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-top: calc(env(safe-area-inset-top) + 110px);
  padding-left: 22px;
  padding-right: 22px;
  padding-bottom: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 30px;
  color: rgb(255,255,255);
  user-select: none;
  background: radial-gradient(1000px circle at 25% 10%, rgba(255,255,255,0.10), transparent 50%), radial-gradient(800px circle at 80% 20%, rgba(255,0,60,0.15), transparent 55%), linear-gradient(135deg, #0b0b0d, #140a0a, #240b0b);
}
.profInfo {
  width: 100%;
  margin-top: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: center;
}

#profName {
  font-size: 20px;
  font-weight: 800;
}
#profEmail {
  font-size: 16px;
}
#accountId {
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  user-select: all;
  white-space: nowrap;
}
.profInfo p {
  margin: 8px;
}

.profActions {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profActions button {
  width: 100%;
  padding: 15px 18px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}



.google-btn {
  display: flex;              
  align-items: center;        
  justify-content: center;    
  gap: 10px;                  
  padding: 10px 20px;         
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}


.google-icon {
  width: 20px;
  height: 20px;
}





.verify-instructions {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 30px;
  line-height: 1.5;
}


.privacy-toggle {
  margin: 25px 0;
  width: 100%;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.toggle-container:hover {
  background: rgba(255, 255, 255, 0.05);
}

.toggle-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

