*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0f172a;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.background{
    position:absolute;
    width:700px;
    height:700px;
    background:linear-gradient(45deg,#2563eb,#06b6d4);
    filter:blur(120px);
    opacity:.25;
    border-radius:50%;
}

.login-container{
    position:relative;
    width:460px;
    max-height:90vh;
    overflow:auto;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.logo-area{
    text-align:center;
    margin-bottom:30px;
}

.logo-area h1{
    color:white;
    font-size:34px;
    margin-bottom:10px;
}

.logo-area p{
    color:#cbd5e1;
}

input{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    margin-bottom:16px;
    background:rgba(255,255,255,0.08);
    color:white;
    outline:none;
    font-size:15px;
}

input::placeholder{
    color:#cbd5e1;
}

button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
    opacity:.95;
}

#erro{
    color:#f87171;
    text-align:center;
    margin-top:16px;
}

#companies{
    max-height:350px;
    overflow:auto;
    margin-top:20px;
    padding-right:5px;
}

#companies::-webkit-scrollbar{
    width:6px;
}

#companies::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:10px;
}

.choose-company{
    margin-top:20px;
}

.choose-company h3{
    color:white;
    text-align:center;
    margin-bottom:20px;
    font-size:28px;
}

.company-btn{
    margin-bottom:12px;
    background:#1e293b;
    padding:16px;
    border-radius:14px;
    width:100%;
    border:none;
    color:white;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
    line-height:1.4;
}

.company-btn:hover{
    background:#2563eb;
    transform:translateY(-2px);
}