@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
    background: #f3f3f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    }

.card{
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    color: #717182;
    font-size: 0.9rem;
}

.form-group{
    margin-bottom: 1.25rem;
}

label{
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #030213;
    margin-bottom: 0.4rem;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: #f3f3f5;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0.625rem;
    font-size: 0.95rem;
    color: #030213;
    outline: none;
}

input:focus{
border-color: #030213;
}

.input-wrap {
    position: relative;
    width: 100%;
}

.toggle-senha {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #717182;
}

.btn-primary{
    width: 100%;
    padding: 0.75rem;
    background: #030213;
    color: white;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.85;
}

.signup {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #717182;
}

.signup a {
    color: #030213;
    text-decoration: none;
    font-weight: 500;
}

.signup a:hover {
    text-decoration: underline;
}




























