/* Reset some defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e9f2fa, #ffffff);
    background-image: 
        linear-gradient(135deg, #e9f2fa 0%, #ffffff 50%, #fefefe 100%),
        radial-gradient(circle at top left, #f40000 5%, transparent 40%),
        radial-gradient(circle at bottom right, #2e8894 5%, transparent 40%),
        radial-gradient(circle at top right, #3a4aa1 5%, transparent 40%);
    background-blend-mode: screen;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
}

.header h1 span {
    font-weight: 400;
    font-size: 18px;
    display: block;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d3f72;
    margin-bottom: 12px;
}

.form-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.account-options {
    /* Removed grid-template-columns for Bootstrap grid usage */
    display: grid;
    gap: 20px;
    padding: 0 10px;
    justify-content: center;
}

.account-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #1d3f72, #2f5ca8);
}

.account-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.account-card img {
    width: 60px;
    margin-bottom: 15px;
}

.account-card h3 {
    font-size: 20px;
    color: #1d3f72;
    margin-bottom: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.account-card h3 i {
    margin-right: 8px;
    vertical-align: middle;
}

.account-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
}

.account-card p strong {
    color: #1d3f72;
}

.account-card .btn {
    display: inline-block;
    background-color: #1d3f72;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.btn:hover {
    background-color: #0e2b52;
    transform: scale(1.03);
}

.login-link {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
}

.login-link a {
    color: #1d3f72;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.ghana-flag-corner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100px;
}