@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    padding:0;
    margin:0;
}

:root{
    /* Text */
    --links: #3B3C4A;
    --search: #A1A1AA;
    --topics: #FFFFFF;
    --primary:#181A2A;
    --technology: #4B6BFB;
    --secondary:#97989F;
    --about: #696A75;

    /* Background */
    --search-bg: #52525b14;
    --blog-bg: #FFFFFF;
    --blog-tag: #4b6bfb10;
    --border-line-blog: #E8E8EA;
    --border-line-view: #696A75;
}

body {
    background: var(--blog-bg);
    color: #fff;
    font-family: "Work Sans", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.reset-container {
    background: var(--blog-bg);
    border:1px solid var(--border-line-blog);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    width: 350px;
}
.reset-container h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary, #fff);
    font-size: 20px;
}
.reset-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.reset-container input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border:none;
    background: var(--search-bg);
    border-radius: 5px;
    font-size: 14px;
    color:var(--primary);
}
.reset-container button {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: var(--blog-bg);
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease-in-out;
}

.reset-container button:hover {
    background:var(--secondary);
}

.reset-alert {
    background: #ff4d4f;
    color: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}