/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* PAGE CONTAINER */
.biz-forgot-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px; /* më shumë hapësirë për desktop */
    background: #f9fafb;
}

/* FORM CONTAINER */
.biz-form-container {
    width: 100%;
    max-width: 500px; /* pak më i madh */
    min-width: 320px; /* mos e bëj shumë të ngushtë */
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px; /* më shumë padding për hapësirë */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* hapësirë midis elementeve */
}

/* FORM STYLING */
.biz-forgot-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px; 
    align-items: flex-start;
}

.biz-forgot-form h2 {
    text-align: center;
    font-size: 26px;
    color: #111827;
    margin-bottom: 20px;
}

.biz-forgot-form p {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}

/* INPUTS */
.biz-forgot-form input {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    transition: all 0.3s;
}

.biz-forgot-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

/* BUTTONS */
.btn-submit {
    width: 100%;
    padding: 14px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1e40af;
}

.btn-go-back {
    display: inline-block;
    padding: 10px 18px;
    background: #f3f4f6;
    color: #2563eb;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-go-back:hover {
    background: #e5e7eb;
}

/* MESSAGES */
.msg-error {
    color: #dc2626;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.msg-success {
    color: #16a34a;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .biz-form-container {
        max-width: 450px;
        padding: 40px 30px;
    }

    .btn-go-back {
        margin-bottom: 25px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
    .biz-form-container {
        padding: 30px 20px;
    }

    .biz-forgot-form h2 {
        font-size: 22px;
    }

    .biz-forgot-form p {
        font-size: 13px;
    }

    .biz-forgot-form input {
        padding: 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 14px;
    }

    .btn-go-back {
        font-size: 14px;
        padding: 8px 12px;
    }
}





/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* PAGE CONTAINER */
.biz-reset-page {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #f9fafb;
}

/* FORM CONTAINER */
.biz-reset-container {
    flex: 1;
    max-width: 450px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* FORM STYLING */
.biz-reset-form {
    display: flex;
    flex-direction: column;
}

.biz-reset-form h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #111827;
    font-size: 24px;
}

.biz-reset-form input {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    width: 100%;
    transition: 0.3s;
}

.biz-reset-form input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* BUTTONS */
.btn-submit {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1e40af;
}

.btn-go-back {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: #f3f4f6;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-go-back:hover {
    background: #e5e7eb;
}

/* MESSAGES */
.msg-error {
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.msg-success {
    color: #16a34a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .biz-reset-container {
        max-width: 100%;
        padding: 30px 20px;
    }

    .btn-go-back {
        margin-bottom: 30px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
    .biz-reset-form h2 {
        font-size: 20px;
    }

    .biz-reset-form input {
        font-size: 14px;
        padding: 10px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 10px;
    }

    .btn-go-back {
        font-size: 14px;
        padding: 8px 12px;
    }

    .biz-reset-container {
        padding: 20px 15px;
    }
}