html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F1F3FA;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}

.trial-card {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 500px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.trial-header {
    background-color: #03A9F4;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.trial-header h2 {
    flex: 1;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.trial-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 40px;
    position: relative;
}

.trial-body::after {
    content: "";
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
    display: block;
}

.trial-body .logo-full {
    width: 180px;
    margin-bottom: 15px;
}

.trial-body h1 {
    flex: 1;
    font-size: 32px;
    margin: 0;
    color: #0080ca;
    margin-bottom: 30px;
}

.trial-body h1 span {
    color: #03A9F4;
}

.trial-body form { }

.trial-body form section { 
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.trial-body form section .trial-form { 
    display: flex;
    flex-direction: column;
    width: 100%;
}

.trial-body form section .trial-form label { 
    font-size: 14px;
    margin-bottom: 5px;
}

.trial-body form section .trial-form input,
.trial-body form section .trial-form select {
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #56525B;
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
}

.trial-body form .action {
    margin-top: 20px;
}

.trial-body form .action button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #03A9F4;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.2s;
}

.trial-body .trial-note {
    text-align: left;
    font-size: 13px;
    color: #666;
    margin-top: auto;
    padding: 15px 0px;
    margin-top: 20px;
    background-color: #fff;
    flex-shrink: 0;
}

.trial-body .trial-login {
    font-size: 16px;
    color: #666;
}

.trial-body .trial-note a,
.trial-body .trial-login a {
    text-decoration: underline;
    color: #03A9F4;
    cursor: pointer;
}

.trial-footer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: auto;
    padding: 15px 10px;
    background-color: #fff;
    flex-shrink: 0;
}
