/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 30 Jun 2026, 3:01:23 pm
    Author     : nurulfarhanabintijeefrilikhsan
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 40px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .header h1 {
        font-size: 2.4rem;
    }

    .page-wrapper {
        padding: 40px 16px 30px;
    }
}

@media (max-width: 576px) {
    .header h1 {
        font-size: 2rem;
    }
}
