.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
}

.modal-box{
    background:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    width:320px;
}

.modal-box button{
    margin-top:15px;
    padding:10px 20px;
    background:#6366f1;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}

.container {
    width: 480px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    margin: 8px 0 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 12px;
    background: #1d4ed8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

button:hover {
    background: #1e40af;
}

.password-row {
    display: flex;
    justify-content: space-between;
}

.error {
    color: red;
    text-align: center;
}

.signup {
    text-align: center;
    margin-top: 15px;
}
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
}
.google-btn img {
  height: 20px;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af; 
    margin: 20px 0;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}


