
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f1f1f1;
}


/* From Uiverse.io by micaelgomestavares */ 
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    margin-top: 20px;
    width: 30%;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1{
    font-size: 35px;
    /* color: #ff9900; */
    margin-bottom: 20px;
}
hr{
    background-color: #ddd;
    height: 3px;
    width: 100%;
    border-radius: 10px;border: none;

}
.form button {
    align-self: flex-end;
}

.flex-column > label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 100%;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

.button-submit:hover {
    background-color: #252727;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
 border: 1px solid #2d79f3;
 
}
.password-strength {
    margin-top: 10px;
    padding: 0 10px;
}

.strength-meter {
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin-bottom: 10px;
}

.strength-meter-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out;
    width: 0;
}

.strength-meter-fill[data-strength="0"] {
    width: 0;
    background: #f00;
}

.strength-meter-fill[data-strength="1"] {
    width: 25%;
    background: #f00;
}

.strength-meter-fill[data-strength="2"] {
    width: 50%;
    background: #ff8c00;
}

.strength-meter-fill[data-strength="3"] {
    width: 75%;
    background: #ffdd00;
}

.strength-meter-fill[data-strength="4"] {
    width: 100%;
    background: #00ff00;
}

.password-requirements {
    font-size: 0.8em;
    color: #666;
}

.requirement {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.requirement::before {
    content: '•';
    margin-right: 5px;
    color: #ccc;
}

.requirement.met::before {
    content: '✓';
    color: #00ff00;
}

.requirement.unmet::before {
    content: '×';
    color: #f00;
} 