.c2 .contents_s_custom {
    float: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
}

.c2 .contents_s_custom .image-container {
    width: 100%;
    }

.image-container-2 .image-container-3 {
    width: 100%;
}
    
    .image-container img {
    /* padding: 5px; */
    width: 100%;
    object-fit: cover;
    /* border: 2px solid pink; */

    }

    .image-container-2 img {
    width: 100%;
    object-fit: cover;
    /* border: 5px solid #00aeef; */
    }

    .image-container-3 img {
    width: 100%;
    object-fit: cover;
    }
    

    /* Container chính của form */
    .c2 .contents_s_custom .login-container {
    background-color: #fbf7f6;
    padding: 35px 15px;
    border: 1px solid #e8e1df;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
/* Tiêu đề của form */
.c2 .contents_s_custom .login-title {
    font-size: 24px;
    font-weight: bold;
    color: #614a3f;
    margin-bottom: 20px;
}

/* Label trong form */
.c2 .contents_s_custom .login-form label {
    font-size: 14px;
    color: #614a3f;
    font-weight: bold;
    display: block;
}

.c2 .contents_s_custom .login-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Input chung cho form */
.login-form input[type="mail"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-weight: bold;
    border-radius: 5px;
}

.login-form input:focus {
    border-color: #614a3f;
    font-weight: bold;
    outline: none;
}

/* Checkbox container */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container input {
    margin-right: 5px;
}

.checkbox-container label {
    font-size: 14px;
    color: #614a3f;
}

.login-button:hover {
    background-color: #8fc2b1;
}

.login-button:active {
    transform: scale(0.98);
}

.recent-viewed-jobs-container {
    width: 100%;
    padding: 20px;
    text-align: center;

    background-color: #fbf7f6;
    border: 1px solid #e8e1df;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.recent-viewed-jobs-container h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grid .item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #666;
    /* flex: 1 0 100px; */
    white-space: normal;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: bold;
}

.grid .item i {
    color: #da6d8b;
    font-weight: bold;
}

.grid .item a {
    text-decoration: none;
}

.more-btn {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.more-btn > button,
.more-btn > a {
    width: 150px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #92cba2;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
}

.more-btn a{
    text-decoration: none;
}

.more-btn button:hover,
.more-btn a:hover {
    background-color: #4cae4c;
}

@media only screen and (min-width: 1024px){
    .c2 .contents_s_custom {
        width: 250px;
        padding: 10;
    }

    .c2 .contents_m {
        float: left;
    }
}

@media only screen and (min-width: 1440px){
    .c2 .contents_s_custom {
        width: 350px !important;
    }
}

@media only screen and (max-width: 1023px){
    .c2 .contents_m{
        float: none;
    }

    .c2 .contents_s_custom {
        width: 100%;
        float: none;
        padding: 0;
    }

    .login-container{
        display: none;
    }
    .recent-viewed-jobs-container{
        padding: 20px 10px;
    }
    .contents_s_custom{
        padding: 10px;
        gap: 15px;
    }
}

.w-100{
    width: 100%;
}