*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', sans-serif;
}

body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('Untitled design.png');
    background-size: cover;
    color: white;
    
}
form {
  border: 3px solid green;
    
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', sans-serif;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: black;
}

form {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border: 3px solid green;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  color: white;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f1f1f1;
  color: black;
}

/* All buttons */
button {
  background-color: teal;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

/* Hover effect for buttons */
button:hover {
  opacity: 0.9;
}

/* Responsive tweaks for small screens */
@media screen and (max-width: 400px) {
  form {
    padding: 15px;
  }
}
/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color: teal;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: mediumpurple;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

/* Avatar image */
img.avatar * { 
  margin: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
   background-image: url('Untitled design.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

/* Form container */
form {
  background-color: rgba(0, 0, 0, 0.7); /* Slight transparency over background */
  padding: 20px;
  border: 3px solid green;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0 16px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f1f1f1;
  color: black;
}

/* All buttons */
button {
  background-color: teal;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

/* Hover effect for buttons */
button:hover {
  opacity: 0.9;
}

/* Extra style for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: mediumpurple;
}

/* Center avatar image inside container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

/* Avatar image */
img.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

/* Padding inside the form container */
.container {
  padding: 16px;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
  color: white;
  font-size: 14px;
}

span.psw a {
  color: lightblue;
  text-decoration: none;
}

span.psw a:hover {
  text-decoration: underline;
}

/* Responsive tweaks for small screens */
@media screen and (max-width: 400px) {
  form {
    padding: 15px;
  }
  .cancelbtn {
    width: 100%;
  }
  span.psw {
    float: none;
    display: block;
    text-align: center;
    padding-top: 12px;
  }
}

  width: 40%;
  border-radius: 50%;
}

/* Add padding to containers */
.container {
  padding: 16px;
    
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
    color: white;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}
body {
  margin: 0;
  font-family: 'Times New Roman', sans-serif;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
}

.sidebar {
  width: 30%;
  background-color: transparent;
  padding: 10px;
  box-shadow: 2px 0px 5px transparent;
}

.main {
  width: 70%;
  padding: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  padding: 10px;
  background-color: transparent;
  margin-bottom: 5px;
  cursor: pointer;
    border: 1px solid black;
}

li:hover {
  background-color: #d0d0d0;
}

textarea, input[type=text] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background-color: teal;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

button:hover {
  opacity: 0.9;
}
body {
  margin: 0;
  font-family: 'Times New Roman', sans-serif;
  display: flex;
  height: 100vh;
}

.container {
  display: flex;
  width: 100%;
}

.sidebar {
  width: 30%;
  background-color: transparent;
  padding: 10px;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}

.main {
  width: 70%;
  padding: 20px;
}

.button-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  padding: 10px;
  background-color: #e0e0e0;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 4px;
}

li:hover {
  background-color: #d0d0d0;
}

textarea, input[type=text] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  height: 400px;
  resize: vertical;
}

button {
  background-color: teal;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
}

button:hover {
  opacity: 0.9;
}

#deleteBtn {
  background-color: red;
}

#deleteBtn:hover {
  background-color: darkred;
}