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

body {
    color: #333;
    background-color: #fff;
}

.container {
    margin: 0 auto;
    text-align: center;
}

/* Logo Section */
.logo {
    background-color: #F97316;
    padding: 25px;
    width: 100%;
    margin-bottom: 40px;
}

.logo-image {
    float: left;
    margin-top: -10px;
    margin-left: -7px;
}

.logo img {
    width: 60px;
    height: auto;
}

/* Main Content Section */
.main-content {
    padding: 20px;
    border-radius: 20px;
    margin: 0px 10px 20px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 23%);
}

.full-logo {
    width: 300px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.welcome-section h2 {
    font-size: 18px;
    color: #f87c24;
    margin-bottom: 20px;
    line-height: 1.5;
}

.welcome-section span {
    color: #F97316;
}

.welcome-section p {
    font-size: 13px;
    color: #666666ba;
    margin-bottom: 20px;
}

/* Login Button Section */
.login-section {
    margin-top: 10px;
}

.login-button {
    background-color: #F97316;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.login-button:hover {
    background-color: #e04e1e;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Help Link */
.help-link {
    display: block;
    margin-top: 15px;
    color: #137fd796;
    font-size: 14px;
    text-decoration: none;
}

footer {
    margin-top: 200px;
    width: 100%;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.footer-content {
    padding: 20px 0 5px;
    background-color: #fff;
}

.footer-content p {
    color: #aaa;
    line-height: 1.5;
}

.footer-copyright {
    background-color: #F97316;
    ;
    color: white;
    padding: 15px 0;
}

footer p {
    margin: 0;
}

.footer-link {
    color: #A4A0A0;
    font-size: 14px;
    text-decoration: none;
}

.blank {
    height: 100px;
}