* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    background: #fff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.left-box {
    width: 50%;
    background: linear-gradient(135deg, #b18ac4, #4d3a52);
    color: #fff;
    padding: 100px 50px;
    text-align: center;
}

.left-box h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

.left-box p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.login-btn {
    padding: 10px 25px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #fff;
    color: #4d3a52;
}

.right-box {
    width: 50%;
    padding: 60px;
    text-align: center;
}

.right-box h2 {
    font-size: 28px;
    color: #0077ff;
    margin-bottom: 25px;
}

/* Alerts */
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Inputs */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.signup-btn {
    width: 100%;
    padding: 12px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.signup-btn:hover {
    background: #005dd1;
}

/* .google-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid #0077ff;
    border-radius: 6px;
    margin-top: 15px;
    text-decoration: none;
    color: #0077ff;
    font-size: 15px;
    transition: 0.3s ease;
} */
/* 
.google-btn:hover {
    background: #eef6ff;
} */

/* Responsive */
@media (max-width: 850px) {
    .container {
        flex-direction: column;
        width: 95%;
    }
    .left-box, .right-box {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .left-box, .right-box {
        padding: 30px 20px;
    }
    .left-box h1 {
        font-size: 24px;
    }
    .right-box h2 {
        font-size: 22px;
    }
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between icon and text */
  width: 100%;
  border: 1px solid #007bff;
  color: #007bff;
  background-color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.google-btn:hover {
  background-color: #f8f9fa;
}

.google-btn img {
  width: 30px;
  height: 30px;
}
