/* ===== LOGIN (ClickUp inspired) ===== */

*{
    box-sizing: border-box;
}

body.login-body{
    margin: 0;
    height: 100vh;
    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(
            1200px 600px at 10% 10%,
            rgba(255, 200, 150, 0.35),
            transparent 60%
        ),
        radial-gradient(
            1000px 600px at 90% 20%,
            rgba(200, 180, 255, 0.35),
            transparent 60%
        ),
        radial-gradient(
            900px 500px at 50% 0%,
            rgba(180, 220, 255, 0.25),
            transparent 60%
        ),
        #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}


.login-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card{
    width: 420px;
    background: #fff;
    padding: 40px 36px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
    text-align: center;
}

.login-logo{
    margin-bottom: 24px;
}

.logo-mark{
  width: 62px;
  height: 62px;
  margin: 0 auto;
  background-image: url("/assets/images/logo3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
}

.login-card h1{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-subtitle{
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 28px;
}

.field{
    margin-bottom: 16px;
}

.field input{
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    transition: border .15s, box-shadow .15s;
}

.field input:focus{
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}

.btn-login{
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    border-radius: 10px;
    border: none;
    background: #6366F1;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-login:hover{
    background: #4F46E5;
}
