/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* White background */
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Header */
header {
  background-color: #E5645B;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .logo img {
  height: 40px;
}

/* Container */
.container {
 
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 80px 40px 80px; 
  min-height: calc(100vh - 10px);
}


.design-btn {
  display: flex;
  justify-content: center; 
  align-items: center;    
  height: 100px;         
  background-color: #ffffff;
}

.design-btn img {
  width: 100px;  
  height: auto;  
}


.login-box {
  border: 1px solid #e5e6e6;
  border-radius: 10px;
  padding: 60px 50px;
  width: 100%;
  max-width: 500px;
  min-height: 600px;
  background-color: transparent; 
}

/* Heading */
h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}

/* Textbox Container */
.textbox {
  margin-bottom: 30px;
}

/* Input Field Styles */
.textbox input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #fafafa;  /* Light grey background */
  border: none;               /* No border initially */
  border-bottom: 2px solid transparent; /* Hidden underline */
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 4px;
  color: #333;
}

/* On focus: show pink underline */
.textbox input:focus {
  border-bottom: 2px solid #d33679;
  background-color: #fff; /* Optional: turn white on focus */
}

/* Login Button */
.login-btn button {
  width: 100%;
  padding: 14px;
  background-color: #E5645B;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.login-btn button:hover {
  background-color: #E5645C;
}

/* Sign-up Link */
.signup-link {
  text-align: center;
  font-size: 14px;
}

.signup-link a {
  color: #007bff;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}
