* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { 
    height: 100%; 
    font-family: 'Montserrat', sans-serif; 
    background-color: #f0f0f0; 
    overflow: hidden; 
}

.reset-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
}


.triangle-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(135deg, #1A1C41 0%, #4B00B4 100%);
    
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    margin-left: 30%; 
    text-align: center;
    color: white;
}

h2 { font-size: 32px; margin-bottom: 30px; font-weight: 500; }
label { display: block; text-align: left; font-size: 14px; margin-bottom: 8px; }

input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.error-msg { color: #ff6b6b; font-size: 12px; margin-top: -20px; margin-bottom: 20px; text-align: left; }