/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Thai', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;  /* Allow vertical scrolling but prevent horizontal overflow */
}

/* Background and Container */
body {
    background: linear-gradient(to bottom, #000000, #1e1e2f, #320033);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: start;  /* Align to the top to allow scrolling */
    min-height: 100vh;
    text-align: center;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 1400px;
    padding: 40px;
}

/* Header Logos */
header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    height: 60px;
}

/* Titles and Subtitle */
.title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #b36df0;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #b3b3f0;
}

/* Description */
.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Quote Section */
.quote {
    font-size: 1.4rem;
    margin: 30px 0;
    font-style: italic;
    color: #f3c7b6;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.feature-item {
    width: 22%;
    font-size: 1rem;
    line-height: 1.5;
}

/* Button Styles to match example image */
.button-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-btn {
    background: #4A1B6F; /* Solid purple from image */
    border: none;
    color: #ffffff;
    padding: 15px 80px; /* Wider padding */
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* For potential <a> tags styled as buttons */
}

.login-btn:hover {
    background-color: #612f8a; /* Lighter purple on hover */
    transform: scale(1.05);
}

.create-account-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from <a> */
}

.create-account-btn:hover {
    background-color: #ffffff;
    color: #000000;
}