body {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll due to fading image */
}

.navbar {
    background-color: #27374D !important;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.buttons {
    display: flex;
    align-items: center;
}

.button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    margin-left: 4px;
    cursor: pointer;
    text-decoration: none;
    background-color: #2a3073;
    color: white;
}

.register {
    background-color: #2a3073;
    color: white;
    text-decoration: underline;
}

.login {
    background-color: white;
    color: #2a3073;
}

.contents {
    padding-left: 20px;
}

.fade-image {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%; 
    background-image: linear-gradient(
        to right,
        transparent,
        #f2f2f2
    ); 
    z-index: -1; 
}

.form-control {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding: 0px;
}

.btn-primary {
    background-color: #2a3073;
    border-color: #2a3073;
    border-radius: 20px;
}

.btn-primary:hover {
    background-color: #2a3073;
    border-color: #2a3073;
}

.socialmedia-btn {
    margin-right: 50px; 
    margin-left: 50px;  
    width: 200px;
    height: 40px;
    background-color: #fff;
    border-radius: 72px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.socialmedia-btn img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.card-service {
    height: 100%;
}

.btn-custom {
    background-color: #DDE6ED;
    border-color: #FAEDCD;
    color: #27374D;
}

.btn-custom:hover {
    background-color: #27374D;
    border-color: #DDE6ED;
    color: #DDE6ED;
}

.btn-custom-outline {
    background-color: #27374D;
    color: #DDE6ED;
}

.btn-custom-outline:hover {
    background-color: #DDE6ED;
    border-color: #94AF9F;
    color: #27374D;
}

a {
    color: transparent;
}

.nav-buttons a {
    margin-right: 10px; /* Add space between the buttons */
}

.nav-buttons a:last-child {
    margin-right: 0; /* Remove margin from the last button */
}

.container {
    flex: 1;
}

.btn-outline-secondary {
    background-color: #DDE6ED;
    border-color: #FAEDCD;
    color: #27374D;
}

.btn-outline-secondary:hover {
    background-color: #27374D;
    border-color: #DDE6ED;
    color: #DDE6ED;
}