@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('/images/bnr.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.logo-img {
  height: 140px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 64, 124, 0.8);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 900px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.left-panel, .right-panel {
  flex: 1;
  padding: 10px 25px;
}

.left-panel {
  background: #18407C;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-panel h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.left-panel p {
  
  line-height: 1.5;
  text-align: center;
}

.social-icons i {
  margin: 0 8px;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  color: #ffffff;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #00b894;
}

.right-panel {
  background: #ffffff;
  color: #333;
}

.right-panel h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #18407C;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: none;
  border-bottom: 2px solid #18407C;
  background: transparent;
  color: #333;
  outline: none;
  font-size: 16px;
}

.input-group label {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #888;
  pointer-events: none;
  transition: 0.3s ease all;
}

.input-group i {
  position: absolute;
  right: 10px;
  top: 12px;
  color: #18407C;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 12px;
  color: #18407C;
  left: 5px;
}


/*.input-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease-in-out 0s;
}*/

    .input-group input:-webkit-autofill,
    .input-group input:-webkit-autofill:focus,
    .input-group input:-webkit-autofill:hover,
    .input-group input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 1000px white inset !important;
        -webkit-text-fill-color: #333 !important;
        transition: background-color 5000s ease-in-out 0s;
        caret-color: #333 !important; /* Cursor ka color bhi same ho */
    }


.options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
}

.options a {
  color: #18407C;
  text-decoration: none;
}

.loginbutton {
  background: #18407C;
  border: none;
  border-radius: 8px;
  padding: 12px;
  width:100%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

    .loginbutton:hover {
        background-color: green;
        color: black;
    }

.btn:hover {
    background: #00e673;
}

.signup-text {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

.signup-text a {
  color: #18407C;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  position: fixed;
  bottom: 40px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  z-index: 5;
}


.signhead{
    font-size: xx-large;
}


.mainhead{
  color:#8CC63F;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 12px;
    color: #18407C;
    cursor: pointer;
}
