/* login page*/


<style>
*{
  box-sizing:border-box;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  margin:0;
  height:100vh;
  background:#ffffff;
}

/* MAIN WRAPPER */
.wrapper{
  display:flex;
  height:100vh;
}

/* LEFT IMAGE (SMALLER) */
.left{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.left img{
  max-width:95%;
  height:auto;
}   

/* RIGHT LOGIN (BIGGER) */
.right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:-8px 0 20px rgba(0,0,0,0.05);
}

.card{
  width:460px;
  padding:35px;
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:12px;
}

.logo img{
  height:80px;
}

/* TITLES */
h2{
  text-align:center;
  color:#18a64a;
  margin-bottom:4px;
  font-size:30px;
}

h3{
  text-align:center;
  font-weight:400;
  margin-bottom:30px;
  font-size:20px;
}

/* INPUTS */
.field{
  margin-bottom:18px;
}

.field label{
  font-size:15px;
  color:#555;
}

.field input{
  width:100%;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid #e1e1e1;
  outline:none;
  margin-top:6px;
  font-size:17px;
}

.field input:focus{
  border-color:#7aa7ff;
  box-shadow:0 0 0 3px rgba(122,167,255,0.12);
}

/* PASSWORD */
.pass-box{
  position:relative;
}

.eye{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
}

.eye svg path,
.eye svg circle,
.eye svg line{
  transition:0.2s;
}

.eye:hover svg path,
.eye:hover svg circle,
.eye:hover svg line{
  stroke:#007aff;
}

/* FORGOT PASSWORD */
.forgot{
  text-align:right;
  font-size:14px;
  margin-top:-8px;
  margin-bottom:12px;
}

.forgot a{
  color:#007aff;
  text-decoration:none;
}

.forgot a:hover{
  text-decoration:underline;
}

/* BUTTON */
button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:22px;
  background:#00bcd4;
  color:white;
  font-size:18px;
  cursor:pointer;
  margin-top:8px;
}

button:hover{
  background:#0097a7;
}

/* ERROR */
.error{
  margin-top:12px;
  color:red;
  font-size:15px;
  text-align:center;
}

/* DISCLAIMER */
.disclaimer{
  margin-top:18px;
  font-size:12px;
  color:#555;
  background:#f4f4f4;
  padding:12px;
  border-radius:12px;
}

/* MOBILE */
@media(max-width:900px){
  .wrapper{
    flex-direction:column;
  }
  .left{
    height:240px;
  }
}
</style>

/* forgotpassword*/


<style>
*{
  box-sizing:border-box;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  margin:0;
  height:100vh;
  background:#ffffff;
}

/* MAIN WRAPPER */
.wrapper{
  display:flex;
  height:100vh;
}

/* LEFT IMAGE */
.left{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.left img{
  max-width:95%;
  height:auto;
}

/* RIGHT FORM */
.right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:-8px 0 20px rgba(0,0,0,0.05);
}

.card{
  width:460px;
  padding:35px;
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:12px;
}

.logo img{
  height:80px;
}

/* TITLES */
h2{
  text-align:center;
  color:#18a64a;
  margin-bottom:6px;
  font-size:28px;
}

h3{
  text-align:center;
  font-weight:400;
  margin-bottom:30px;
  font-size:18px;
  color:#444;
}

/* INPUTS */
.field{
  margin-bottom:18px;
}

.field label{
  font-size:15px;
  color:#555;
}

.field input{
  width:100%;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid #e1e1e1;
  outline:none;
  margin-top:6px;
  font-size:16px;
}

.field input:focus{
  border-color:#7aa7ff;
  box-shadow:0 0 0 3px rgba(122,167,255,0.12);
}

/* BUTTON */
button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:22px;
  background:#00bcd4;
  color:white;
  font-size:17px;
  cursor:pointer;
  margin-top:10px;
}

button:hover{
  background:#0097a7;
}

/* LINKS */
.back{
  text-align:center;
  margin-top:15px;
  font-size:14px;
}

.back a{
  color:#007aff;
  text-decoration:none;
}

.back a:hover{
  text-decoration:underline;
}

/* DISCLAIMER */
.disclaimer{
  margin-top:18px;
  font-size:12px;
  color:#555;
  background:#f4f4f4;
  padding:12px;
  border-radius:12px;
}

/* SECTIONS */
.section{
  display:none;
}

/* MOBILE */
@media(max-width:900px){
  .wrapper{
    flex-direction:column;
  }
  .left{
    height:240px;
  }
}
</style>

/* OTP*/

<style>
*{
  box-sizing:border-box;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  margin:0;
  height:100vh;
  background:#ffffff;
}

/* MAIN WRAPPER */
.wrapper{
  display:flex;
  height:100vh;
}

/* LEFT IMAGE */
.left{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.left img{
  max-width:95%;
  height:auto;
}

/* RIGHT FORM */
.right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:-8px 0 20px rgba(0,0,0,0.05);
}

.card{
  width:460px;
  padding:35px;
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:12px;
}

.logo img{
  height:80px;
}

/* TITLES */
h2{
  text-align:center;
  color:#18a64a;
  margin-bottom:6px;
  font-size:28px;
}

h3{
  text-align:center;
  font-weight:400;
  margin-bottom:30px;
  font-size:18px;
  color:#444;
}

/* INPUTS */
.field{
  margin-bottom:18px;
}

.field label{
  font-size:15px;
  color:#555;
}

.field input{
  width:100%;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid #e1e1e1;
  outline:none;
  margin-top:6px;
  font-size:16px;
}

.field input:focus{
  border-color:#7aa7ff;
  box-shadow:0 0 0 3px rgba(122,167,255,0.12);
}

/* BUTTON */
button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:22px;
  background:#00bcd4;
  color:white;
  font-size:17px;
  cursor:pointer;
  margin-top:10px;
}

button:hover{
  background:#0097a7;
}

/* LINKS */
.back{
  text-align:center;
  margin-top:15px;
  font-size:14px;
}

.back a{
  color:#007aff;
  text-decoration:none;
}

.back a:hover{
  text-decoration:underline;
}

/* DISCLAIMER */
.disclaimer{
  margin-top:18px;
  font-size:12px;
  color:#555;
  background:#f4f4f4;
  padding:12px;
  border-radius:12px;
}

/* MOBILE */
@media(max-width:900px){
  .wrapper{
    flex-direction:column;
  }
  .left{
    height:240px;
  }
}
</style>

/*new password*/

<style>
*{
  box-sizing:border-box;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  margin:0;
  height:100vh;
  background:#ffffff;
}

/* MAIN WRAPPER */
.wrapper{
  display:flex;
  height:100vh;
}

/* LEFT IMAGE */
.left{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.left img{
  max-width:95%;
  height:auto;
}

/* RIGHT FORM */
.right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:-8px 0 20px rgba(0,0,0,0.05);
}

.card{
  width:460px;
  padding:35px;
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:12px;
}

.logo img{
  height:80px;
}

/* TITLES */
h2{
  text-align:center;
  color:#18a64a;
  margin-bottom:6px;
  font-size:28px;
}

h3{
  text-align:center;
  font-weight:400;
  margin-bottom:25px;
  font-size:18px;
  color:#444;
}

/* INPUTS */
.field{
  margin-bottom:16px;
}

.field label{
  font-size:15px;
  color:#555;
}

.field input{
  width:100%;
  padding:14px 18px;
  border-radius:18px;
  border:1px solid #e1e1e1;
  outline:none;
  margin-top:6px;
  font-size:16px;
}

.field input:focus{
  border-color:#7aa7ff;
  box-shadow:0 0 0 3px rgba(122,167,255,0.12);
}

/* PASSWORD RULES */
.rules{
  font-size:13px;
  color:#555;
  background:#f4f4f4;
  padding:12px;
  border-radius:12px;
  margin-bottom:15px;
}

.rules ul{
  margin:0;
  padding-left:18px;
}

/* BUTTON */
button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:22px;
  background:#00bcd4;
  color:white;
  font-size:17px;
  cursor:pointer;
  margin-top:10px;
}

button:hover{
  background:#0097a7;
}

/* LINKS */
.back{
  text-align:center;
  margin-top:15px;
  font-size:14px;
}

.back a{
  color:#007aff;
  text-decoration:none;
}

.back a:hover{
  text-decoration:underline;
}

/* DISCLAIMER */
.disclaimer{
  margin-top:18px;
  font-size:12px;
  color:#555;
  background:#f4f4f4;
  padding:12px;
  border-radius:12px;
}

/* MOBILE */
@media(max-width:900px){
  .wrapper{
    flex-direction:column;
  }
  .left{
    height:240px;
  }
}
</style>


/* dashboard*/

<style>
*{
  box-sizing:border-box;
  font-family:Inter, sans-serif;
}

body{
  margin:0;
  background:#f2f4f8;
}

/* HEADER */
.header{
  height:70px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 25px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header img{
  height:45px;
}

.user{
  font-size:14px;
  color:#444;
}

/* MAIN AREA */
.main{
  padding:25px;
}

/* WELCOME CARD */
.welcome{
  background:#ffffff;
  border-radius:16px;
  padding:25px;
  margin-bottom:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.welcome h2{
  margin:0;
  color:#18a64a;
}

.welcome p{
  margin-top:8px;
  color:#555;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* CARD */
.card{
  background:#ffffff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.card h3{
  margin-top:0;
  color:#333;
}

.card p{
  color:#555;
  font-size:14px;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 18px;
  background:#00bcd4;
  color:white;
  border-radius:18px;
  text-decoration:none;
  font-size:14px;
}

.btn:hover{
  background:#0097a7;
}

/* FOOTER */
.footer{
  margin-top:25px;
  font-size:12px;
  color:#666;
  text-align:center;
}
</style>


/* profile*/


<style>
*{box-sizing:border-box;font-family:"Segoe UI",Arial,sans-serif;}
body{margin:0;background:#f2f4f8;}

/* HEADER */
.header{
  height:60px;
  background:#e53935;
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}
.header img{height:40px;}
.header a{color:white;text-decoration:none;font-size:14px;}

/* MAIN */



<style>
*{box-sizing:border-box;font-family:"Segoe UI",Arial,sans-serif;}
body{margin:0;background:#f2f4f8;}

/* HEADER */
.header{
  height:60px;
  background:#e53935;
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}
.header img{height:40px;}
.header a{color:white;text-decoration:none;font-size:14px;}

/* MAIN */
.main{padding:20px;}

/* CARD */
.card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  margin-bottom:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
.card h2{margin-top:0;color:#1e88e5;}

/* PROFILE */
.profile-grid{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
}
.profile-grid img{width:120px;}
.info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.info div{font-size:14px;color:#444;}

/* TABLE */
table{width:100%;border-collapse:collapse;font-size:14px;}
th,td{padding:8px;border-bottom:1px solid #ddd;text-align:left;}
th{background:#f5f7fb;}

/* BUTTON */
.btn{
  padding:8px 14px;
  border:none;
  border-radius:14px;
  background:#00bcd4;
  color:white;
  cursor:pointer;
}
.btn:hover{background:#0097a7;}

.top-actions{display:flex;justify-content:flex-end;margin-bottom:10px;}

/* SECTION COLORS */
.pink{background:#c2185b;color:white;}
.purple{background:#7b1fa2;color:white;}

/* FINAL SUBMIT */
.submit-btn{
  padding:12px 30px;
  background:#18a64a;
  border:none;
  border-radius:20px;
  color:white;
  font-size:16px;
  cursor:pointer;
}
</style>



/*profile details*/







/* ---------- GLOBAL ---------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f2f4f7;
    color: #333;
}

/* ---------- HEADER ---------- */
.header {
    width: 100%;
    background: #e63946;
    color: white;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.header button {
    background: #1ecbe1;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* ---------- PAGE WRAPPER (FULL WIDTH) ---------- */
.page {
    width: 100%;
    padding: 30px 40px;
}

/* ---------- CONTENT AREA (FULL WIDTH CARD) ---------- */
.container {
    width: 100%;
    background: white;
    border-radius: 14px;
    padding: 35px 40px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* ---------- POLICY HEADER ---------- */
.policy-header {
    text-align: center;
    margin-bottom: 30px;
}

.policy-header h2 {
    color: #ff8c1a;
    margin-bottom: 6px;
}

.policy-header span {
    color: #007bff;
    font-size: 14px;
}

/* ---------- INFO GRID ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.label {
    font-size: 13px;
    color: #777;
}

.value {
    font-weight: 600;
    margin-top: 4px;
}

/* ---------- EMPLOYEE SECTION ---------- */
.employee-section {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* EMPLOYEE CARD */
.employee-card {
    width: 320px;
    background: #18c2e0;
    color: white;
    border-radius: 12px;
    padding: 24px;
}

.employee-card p {
    margin: 12px 0;
    font-weight: 600;
}

/* DETAILS */
.details {
    flex: 1;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ---------- EDITABLE INPUT ---------- */
.editable {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.editable[readonly] {
    background-color: #f1f1f1;
}

.editable:focus {
    border-color: #00a6c7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,166,199,0.15);
}

/* ---------- STATUS ---------- */
.status {
    margin-top: 18px;
}

.status span {
    background: #28a745;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

/* ---------- ACTIONS ---------- */
.actions {
    margin-top: 18px;
}

.actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.edit-btn {
    background: #007bff;
    color: white;
}

.save-btn {
    background: #28a745;
    color: white;
    display: none;
}

/* ---------- NOTE ---------- */
.note {
    margin-top: 12px;
    font-size: 12px;
    color: red;
}

/* ---------- COVERAGE ---------- */
.coverage {
    margin-top: 45px;
}

.coverage h3 {
    color: #00a6c7;
    margin-bottom: 18px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f3f4f6;
  color: #333;
  min-height: 100vh;   /* 🔑 MOST IMPORTANT */
}
.page {
  min-height: calc(100vh - 60px); /* header height minus */
  padding: 24px 32px;
}
