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

#reset-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://c0.wallpaperflare.com/preview/872/71/787/united-states-berkeley-hot-wheels-diecast.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   
}

.reset-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    background-image: url('https://i.pinimg.com/736x/d2/17/2b/d2172b3b2fd4398727d433cba54ddb70.jpg');
    box-shadow: 0 px 24px rgba(0, 0, 0, 0.1);
}

#reset-password  {
    color: white ;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.reset-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reset-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.reset-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
}

.reset-form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.reset-form-group input:focus {
    border-color: #4a90e2;
}

#reset-form button {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

#reset-form button:hover {
    background: #252d35;
}

.error-message{
    color: red;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: left;
}