* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-decoration: none;
}

body {
    background-color:rgb(0, 0, 0);
    background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('/assets/core/img/auth-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.form-card {
    background: #00000089;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid #c2c2c2;
    color: white;
    backdrop-filter: blur(10px);
    position: relative;
}

@media (max-width: 576px) {
    .form-card {
        padding: 1.5rem;
    }
}

.form-card h1 {
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.input-form {
    margin-bottom: 1.5rem;
}

.input-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #9c9c9c1c;
    border: 1px solid #cacacaaa;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.5s ease;
}

.input-form input:focus {
    outline: none;
    border-color: #ffffff;
}

.divider {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin: 1.5rem 0;
    color: #eeeeee;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #7a7a7a;
}

.divider span {
    padding: 0 1rem;
}

.other-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #c6c6c6b9;
    color: #ffffff;
    background: #9c9c9c1c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #ffffff;
    background: #7373732f;
}

.sign-in-btn {
    width: 100%;
    padding: 12px;
    background: #9900ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.sign-in-btn:hover {
    background: #8300d4;
    cursor: pointer;
}

.or {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.or-link {
    color: white ;
    text-decoration: none;
    transition: all 0.4s ease;
}

.or-link:hover {
    color: #cb7bf3
}